Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(202)

Side by Side Diff: src/pkg/text/template/set.go

Issue 5345045: code review 5345045: renaming_3: gofix -r go1pkgrename src/pkg/[m-z]* (Closed)
Patch Set: diff -r 94794514aca0 https://go.googlecode.com/hg/ Created 13 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/text/template/parse/lex.go ('k') | src/pkg/unicode/maketables.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package template 5 package template
6 6
7 import ( 7 import (
8 "fmt" 8 "fmt"
9 "io" 9 "io"
10 "reflect" 10 "reflect"
11 » "template/parse" 11 » "text/template/parse"
12 ) 12 )
13 13
14 // Set holds a set of related templates that can refer to one another by name. 14 // Set holds a set of related templates that can refer to one another by name.
15 // The zero value represents an empty set. 15 // The zero value represents an empty set.
16 // A template may be a member of multiple sets. 16 // A template may be a member of multiple sets.
17 type Set struct { 17 type Set struct {
18 tmpl map[string]*Template 18 tmpl map[string]*Template
19 leftDelim string 19 leftDelim string
20 rightDelim string 20 rightDelim string
21 parseFuncs FuncMap 21 parseFuncs FuncMap
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 for name, tree := range trees { 111 for name, tree := range trees {
112 tmpl := New(name) 112 tmpl := New(name)
113 tmpl.Tree = tree 113 tmpl.Tree = tree
114 err = s.add(tmpl) 114 err = s.add(tmpl)
115 if err != nil { 115 if err != nil {
116 return s, err 116 return s, err
117 } 117 }
118 } 118 }
119 return s, nil 119 return s, nil
120 } 120 }
OLDNEW
« no previous file with comments | « src/pkg/text/template/parse/lex.go ('k') | src/pkg/unicode/maketables.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b