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 "bytes" | 8 "bytes" |
9 "fmt" | 9 "fmt" |
10 "os" | 10 "os" |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 return &withNode{nodeType: nodeWith, line: line, pipe: pipe, list: list,
elseList: elseList} | 505 return &withNode{nodeType: nodeWith, line: line, pipe: pipe, list: list,
elseList: elseList} |
506 } | 506 } |
507 | 507 |
508 func (w *withNode) String() string { | 508 func (w *withNode) String() string { |
509 if w.elseList != nil { | 509 if w.elseList != nil { |
510 return fmt.Sprintf("({{with %s}} %s {{else}} %s)", w.pipe, w.lis
t, w.elseList) | 510 return fmt.Sprintf("({{with %s}} %s {{else}} %s)", w.pipe, w.lis
t, w.elseList) |
511 } | 511 } |
512 return fmt.Sprintf("({{with %s}} %s)", w.pipe, w.list) | 512 return fmt.Sprintf("({{with %s}} %s)", w.pipe, w.list) |
513 } | 513 } |
514 | 514 |
515 | |
516 // Parsing. | 515 // Parsing. |
517 | 516 |
518 // New allocates a new template with the given name. | 517 // New allocates a new template with the given name. |
519 func New(name string) *Template { | 518 func New(name string) *Template { |
520 return &Template{ | 519 return &Template{ |
521 name: name, | 520 name: name, |
522 funcs: make(map[string]reflect.Value), | 521 funcs: make(map[string]reflect.Value), |
523 } | 522 } |
524 } | 523 } |
525 | 524 |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
891 func (t *Template) useVar(name string) node { | 890 func (t *Template) useVar(name string) node { |
892 v := newVariable(name) | 891 v := newVariable(name) |
893 for _, varName := range t.vars { | 892 for _, varName := range t.vars { |
894 if varName == v.ident[0] { | 893 if varName == v.ident[0] { |
895 return v | 894 return v |
896 } | 895 } |
897 } | 896 } |
898 t.errorf("undefined variable %q", v.ident[0]) | 897 t.errorf("undefined variable %q", v.ident[0]) |
899 return nil | 898 return nil |
900 } | 899 } |
OLD | NEW |