summaryrefslogtreecommitdiff
path: root/src/go/parser
Commit message (Collapse)AuthorAgeFilesLines
* go/parser: Use test-specific filesets to avoid races.Robert Griesemer2014-11-202-25/+22
| | | | | | | | | | | | Only affects test code. Fixes issue 9025. Fixes issue 9130. LGTM=r, adonovan R=adonovan, r CC=golang-codereviews https://codereview.appspot.com/180920043
* go/parser: fix (pathological) corner caseRobert Griesemer2014-09-082-0/+3
| | | | | | | | | | | | | | Inside a control clause (if ... {}), composite literals starting with a type name must be parenthesized. A composite literal used in the array length expression of an array composite literal is already parenthesized. Not a valid program, but syntactically is should be accepted. LGTM=adonovan R=adonovan CC=golang-codereviews https://codereview.appspot.com/142760043
* build: move package sources from src/pkg to srcRuss Cox2014-09-089-0/+3521
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.