summaryrefslogtreecommitdiff
path: root/src/pkg/ebnf/ebnf_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-08-03Imported Upstream version 2011.07.29Ondřej Surý1-8/+0
2011-06-10Imported Upstream version 2011.06.09upstream-weekly/2011.06.09Ondřej Surý1-5/+28
2011-06-03Imported Upstream version 2011.06.02upstream-weekly/2011.06.02Ondřej Surý1-1/+1
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-25/+20
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-25/+25
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-2/+6
2010-02-25strings: delete Runes, BytesRuss Cox1-2/+1
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-6/+6
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 2nd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/179067
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike1-2/+2
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-4/+4
R=rsc, r http://go/go-review/1025029
2009-11-04gofmt-ify ebnfRobert Griesemer1-3/+3
R=r http://go/go-review/1018050
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-1/+0
to whole-package compilation. R=r OCL=33070 CL=33101
2009-07-14- use new scanner error handling codeRobert Griesemer1-4/+4
R=rsc DELTA=109 (0 added, 87 deleted, 22 changed) OCL=31573 CL=31603
2009-07-13Basic EBNF package:Robert Griesemer1-0/+75
- parsing of EBNF grammars - basic consistency checks R=rsc DELTA=695 (695 added, 0 deleted, 0 changed) OCL=31479 CL=31516