diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-01 20:10:10 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-01 20:10:10 +0200 |
| commit | 77642e5081b4ed2516dc08b3ef611c3c444ec6c5 (patch) | |
| tree | 7874546e2357e33346f0b91bb1ac023283cae7fb /src/z/js/parser/root.zig | |
| parent | c8744f9f6a28a23b83603435a3ad987f0d9f181b (diff) | |
restructure parser
Diffstat (limited to 'src/z/js/parser/root.zig')
| -rw-r--r-- | src/z/js/parser/root.zig | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/z/js/parser/root.zig b/src/z/js/parser/root.zig deleted file mode 100644 index a6be9ca..0000000 --- a/src/z/js/parser/root.zig +++ /dev/null @@ -1,11 +0,0 @@ -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()); -} |