diff options
Diffstat (limited to 'spec/grammar')
-rw-r--r-- | spec/grammar/description.go | 1 | ||||
-rw-r--r-- | spec/grammar/grammar.go | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/spec/grammar/description.go b/spec/grammar/description.go index dd66950..68b16be 100644 --- a/spec/grammar/description.go +++ b/spec/grammar/description.go @@ -4,7 +4,6 @@ type Terminal struct { Number int `json:"number"` Name string `json:"name"` Anonymous bool `json:"anonymous"` - Alias string `json:"alias"` Pattern string `json:"pattern"` Precedence int `json:"prec"` Associativity string `json:"assoc"` diff --git a/spec/grammar/grammar.go b/spec/grammar/grammar.go index af87504..ddd0466 100644 --- a/spec/grammar/grammar.go +++ b/spec/grammar/grammar.go @@ -18,7 +18,6 @@ type Maleeni struct { Spec *mlspec.CompiledLexSpec `json:"spec"` KindToTerminal []int `json:"kind_to_terminal"` Skip []int `json:"skip"` - KindAliases []string `json:"kind_aliases"` } type ParsingTable struct { |