diff options
Diffstat (limited to 'src/z/parser/js')
| -rw-r--r-- | src/z/parser/js/lexical_grammar.zig | 3 | ||||
| -rw-r--r-- | src/z/parser/js/root.zig | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/z/parser/js/lexical_grammar.zig b/src/z/parser/js/lexical_grammar.zig new file mode 100644 index 0000000..7060766 --- /dev/null +++ b/src/z/parser/js/lexical_grammar.zig @@ -0,0 +1,3 @@ +const parser = @import("root.zig"); +const Result = parser.Result; + diff --git a/src/z/parser/js/root.zig b/src/z/parser/js/root.zig new file mode 100644 index 0000000..a6be9ca --- /dev/null +++ b/src/z/parser/js/root.zig @@ -0,0 +1,11 @@ +const std = @import("std"); + +pub const lexical_grammar = @import("lexical_grammar.zig"); + +pub const Result = @import("result.zig").Result; +pub const Parser = @import("parser.zig").Parser; +pub const builtin = @import("builtin.zig"); + +test { + _ = std.testing.refAllDecls(@This()); +} |