Commit b6d0a22d authored by Robert Griesemer's avatar Robert Griesemer

gofmt-ify ebnf

R=r
http://go/go-review/1018050
parent 646a2c5a
......@@ -92,7 +92,7 @@ type (
// A Grammar is a set of EBNF productions. The map
// is indexed by production name.
//
Grammar map [string] *Production;
Grammar map[string]*Production;
)
......
......@@ -11,7 +11,7 @@ import (
)
var grammars = []string {
var grammars = []string{
`Program = .
`,
......@@ -58,8 +58,8 @@ func TestGrammars(t *testing.T) {
}
var files = []string {
// TODO(gri) add some test files
var files = []string{
// TODO(gri) add some test files
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment