aboutsummaryrefslogtreecommitdiff
path: root/spec/grammar.go
diff options
context:
space:
mode:
authorRyo Nihei <nihei.dev@gmail.com>2022-05-21 14:01:09 +0900
committerRyo Nihei <nihei.dev@gmail.com>2022-05-22 15:44:47 +0900
commitb5ad1d30df993d68cc64c140bf1005b5490f2605 (patch)
tree919e3102866b4dcf4ed58c0a48227ee0c81f1f5d /spec/grammar.go
parentProhibit applying #left, #right, #assign, and #prec to an error symbol (diff)
downloadurubu-b5ad1d30df993d68cc64c140bf1005b5490f2605.tar.gz
urubu-b5ad1d30df993d68cc64c140bf1005b5490f2605.tar.xz
Stop supporting SLR(1) and always use LALR(1)
Diffstat (limited to 'spec/grammar.go')
-rw-r--r--spec/grammar.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/grammar.go b/spec/grammar.go
index bf14d86..e3c87d1 100644
--- a/spec/grammar.go
+++ b/spec/grammar.go
@@ -23,7 +23,6 @@ type Maleeni struct {
}
type ParsingTable struct {
- Class string `json:"class"`
Action []int `json:"action"`
GoTo []int `json:"goto"`
StateCount int `json:"state_count"`