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

Side by Side Diff: src/pkg/exp/template/parse.go

Issue 4715041: code review 4715041: go/printer: changed max. number of newlines from 3 to 2 (Closed)
Patch Set: diff -r 43f78423340b https://go.googlecode.com/hg/ Created 13 years, 8 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/exp/template/funcs.go ('k') | src/pkg/exp/template/set_test.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 "bytes" 8 "bytes"
9 "fmt" 9 "fmt"
10 "os" 10 "os"
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « src/pkg/exp/template/funcs.go ('k') | src/pkg/exp/template/set_test.go » ('j') | no next file with comments »

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