diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-22 11:31:33 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-22 15:44:50 +0900 |
commit | def1459d58bd7c362c626ca2307d83bf576e9dce (patch) | |
tree | 32a9a7f9fd3bb60a63d438639d11338aaf396d64 /driver/syntax_error_test.go | |
parent | Stop supporting SLR(1) and always use LALR(1) (diff) | |
download | cotia-def1459d58bd7c362c626ca2307d83bf576e9dce.tar.gz cotia-def1459d58bd7c362c626ca2307d83bf576e9dce.tar.xz |
Allows a directory to be specified as the --output option for the vartan-compile command
Diffstat (limited to 'driver/syntax_error_test.go')
-rw-r--r-- | driver/syntax_error_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/syntax_error_test.go b/driver/syntax_error_test.go index c49d804..a004a44 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) + gram, _, err := grammar.Compile(g) if err != nil { t.Fatal(err) } |