Index: src/pkg/ebnf/ebnf.go |
=================================================================== |
--- a/src/pkg/ebnf/ebnf.go |
+++ b/src/pkg/ebnf/ebnf.go |
@@ -30,7 +30,6 @@ |
"utf8" |
) |
- |
// ---------------------------------------------------------------------------- |
// Internal representation |
@@ -100,7 +99,6 @@ |
Grammar map[string]*Production |
) |
- |
func (x Alternative) Pos() token.Pos { return x[0].Pos() } // the parser always generates non-empty Alternative |
func (x Sequence) Pos() token.Pos { return x[0].Pos() } // the parser always generates non-empty Sequences |
func (x *Name) Pos() token.Pos { return x.StringPos } |
@@ -112,7 +110,6 @@ |
func (x *Bad) Pos() token.Pos { return x.TokPos } |
func (x *Production) Pos() token.Pos { return x.Name.Pos() } |
- |
// ---------------------------------------------------------------------------- |
// Grammar verification |
@@ -121,7 +118,6 @@ |
return !unicode.IsUpper(ch) |
} |
- |
type verifier struct { |
fset *token.FileSet |
scanner.ErrorVector |
@@ -130,12 +126,10 @@ |
grammar Grammar |
} |
- |
func (v *verifier) error(pos token.Pos, msg string) { |
v.Error(v.fset.Position(pos), msg) |
} |
- |
func (v *verifier) push(prod *Production) { |
name := prod.Name.String |
if _, found := v.reached[name]; !found { |
@@ -144,7 +138,6 @@ |
} |
} |
- |
func (v *verifier) verifyChar(x *Token) int { |
s := x.String |
if utf8.RuneCountInString(s) != 1 { |
@@ -155,7 +148,6 @@ |
return ch |
} |
- |
func (v *verifier) verifyExpr(expr Expression, lexical bool) { |
switch x := expr.(type) { |
case nil: |
@@ -200,7 +192,6 @@ |
} |
} |
- |
func (v *verifier) verify(fset *token.FileSet, grammar Grammar, start string) { |
// find root production |
root, found := grammar[start] |
@@ -240,7 +231,6 @@ |
} |
} |
- |
// Verify checks that: |
// - all productions used are defined |
// - all productions defined are used when beginning at start |