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/lac_test.go | |
parent | Stop supporting SLR(1) and always use LALR(1) (diff) | |
download | urubu-def1459d58bd7c362c626ca2307d83bf576e9dce.tar.gz urubu-def1459d58bd7c362c626ca2307d83bf576e9dce.tar.xz |
Allows a directory to be specified as the --output option for the vartan-compile command
Diffstat (limited to 'driver/lac_test.go')
-rw-r--r-- | driver/lac_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/lac_test.go b/driver/lac_test.go index e612b13..d850e9b 100644 --- a/driver/lac_test.go +++ b/driver/lac_test.go @@ -56,7 +56,7 @@ d: 'd'; t.Fatal(err) } - gram, err := grammar.Compile(g) + gram, _, err := grammar.Compile(g) if err != nil { t.Fatal(err) } |