From b5ad1d30df993d68cc64c140bf1005b5490f2605 Mon Sep 17 00:00:00 2001 From: Ryo Nihei Date: Sat, 21 May 2022 14:01:09 +0900 Subject: Stop supporting SLR(1) and always use LALR(1) --- driver/syntax_error_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'driver/syntax_error_test.go') diff --git a/driver/syntax_error_test.go b/driver/syntax_error_test.go index 93cf637..c49d804 100644 --- a/driver/syntax_error_test.go +++ b/driver/syntax_error_test.go @@ -126,7 +126,7 @@ c t.Fatal(err) } - gram, err := grammar.Compile(g, grammar.SpecifyClass(grammar.ClassLALR)) + gram, err := grammar.Compile(g) if err != nil { t.Fatal(err) } -- cgit v1.2.3