diff options
Diffstat (limited to 'parser.go')
-rw-r--r-- | parser.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,9 +7,9 @@ import ( ) type Node struct { - Token string - Children []Node - Result interface{} + Token string + Child []Node + Result interface{} } type Parser func(*State) Node |