aboutsummaryrefslogtreecommitdiff
path: root/spec/grammar/grammar.go
diff options
context:
space:
mode:
Diffstat (limited to 'spec/grammar/grammar.go')
-rw-r--r--spec/grammar/grammar.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/grammar/grammar.go b/spec/grammar/grammar.go
index ddd0466..995d6aa 100644
--- a/spec/grammar/grammar.go
+++ b/spec/grammar/grammar.go
@@ -17,7 +17,6 @@ type LexicalSpecification struct {
type Maleeni struct {
Spec *mlspec.CompiledLexSpec `json:"spec"`
KindToTerminal []int `json:"kind_to_terminal"`
- Skip []int `json:"skip"`
}
type ParsingTable struct {
@@ -30,6 +29,7 @@ type ParsingTable struct {
AlternativeSymbolCounts []int `json:"alternative_symbol_counts"`
Terminals []string `json:"terminals"`
TerminalCount int `json:"terminal_count"`
+ TerminalSkip []int `json:"terminal_skip"`
NonTerminals []string `json:"non_terminals"`
NonTerminalCount int `json:"non_terminal_count"`
EOFSymbol int `json:"eof_symbol"`