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/parser_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/parser_test.go')
-rw-r--r-- | driver/parser_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/parser_test.go b/driver/parser_test.go index 65958bc..bec6a51 100644 --- a/driver/parser_test.go +++ b/driver/parser_test.go @@ -740,7 +740,7 @@ bar: 'bar'; t.Fatal(err) } - cg, err := grammar.Compile(g) + cg, _, err := grammar.Compile(g) if err != nil { t.Fatal(err) } |