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

Issue 5795073: code review 5795073: text/template: fix a couple of parse bugs around identi... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
13 years ago by r
Modified:
13 years ago
Reviewers:
CC:
golang-dev, rsc
Visibility:
Public.

Description

text/template: fix a couple of parse bugs around identifiers. 1) Poor error checking in variable declarations admitted $x=2 or even $x%2. 2) Need white space or suitable termination character after identifiers, so $x+2 doesn't parse, in case we want it to mean something one day. Number 2 in particular prevents mistakes that we will have to honor later and so is necessary for Go 1. Fixes issue 3270. Fixes issue 3271.

Patch Set 1 #

Patch Set 2 : diff -r 162b42fd9e57 https://code.google.com/p/go/ #

Patch Set 3 : diff -r 7b88aab5cdb5 https://code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+42 lines, -2 lines) Patch
M src/pkg/text/template/multi_test.go View 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/text/template/parse/lex.go View 2 chunks +25 lines, -0 lines 0 comments Download
M src/pkg/text/template/parse/parse.go View 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/text/template/parse/parse_test.go View 1 2 chunks +15 lines, -0 lines 0 comments Download

Messages

Total messages: 3
r
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://code.google.com/p/go/
13 years ago (2012-03-13 06:42:58 UTC) #1
rsc
LGTM bug1c, while valid to parse, is not valid to execute, and text/template does not ...
13 years ago (2012-03-13 13:18:22 UTC) #2
r
13 years ago (2012-03-13 20:03:17 UTC) #3
*** Submitted as http://code.google.com/p/go/source/detail?r=fdd527534db9 ***

text/template: fix a couple of parse bugs around identifiers.
1) Poor error checking in variable declarations admitted
$x=2 or even $x%2.
2) Need white space or suitable termination character
after identifiers, so $x+2 doesn't parse, in case we want it
to mean something one day.
Number 2 in particular prevents mistakes that we will have
to honor later and so is necessary for Go 1.

Fixes issue 3270.
Fixes issue 3271.

R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/5795073
Sign in to reply to this message.

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