OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |