diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-21 14:01:09 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-22 15:44:47 +0900 |
commit | b5ad1d30df993d68cc64c140bf1005b5490f2605 (patch) | |
tree | 919e3102866b4dcf4ed58c0a48227ee0c81f1f5d /driver/semantic_action_test.go | |
parent | Prohibit applying #left, #right, #assign, and #prec to an error symbol (diff) | |
download | urubu-b5ad1d30df993d68cc64c140bf1005b5490f2605.tar.gz urubu-b5ad1d30df993d68cc64c140bf1005b5490f2605.tar.xz |
Stop supporting SLR(1) and always use LALR(1)
Diffstat (limited to 'driver/semantic_action_test.go')
-rw-r--r-- | driver/semantic_action_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/semantic_action_test.go b/driver/semantic_action_test.go index ad58780..d0e769e 100644 --- a/driver/semantic_action_test.go +++ b/driver/semantic_action_test.go @@ -194,7 +194,7 @@ char t.Fatal(err) } - gram, err := grammar.Compile(g, grammar.SpecifyClass(grammar.ClassLALR)) + gram, err := grammar.Compile(g) if err != nil { t.Fatal(err) } |