diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-03 17:07:05 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-03 17:07:05 +0200 |
| commit | 0bc6d195195d1e126b535554a4a4105468cd06d9 (patch) | |
| tree | 6a3288e56bd306db499e597fc53762d05a7c3b82 /src/z/parser/js/root.zig | |
| parent | 77642e5081b4ed2516dc08b3ef611c3c444ec6c5 (diff) | |
add tokenizer for whitespaces in js
Diffstat (limited to 'src/z/parser/js/root.zig')
| -rw-r--r-- | src/z/parser/js/root.zig | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/z/parser/js/root.zig b/src/z/parser/js/root.zig index a6be9ca..e604855 100644 --- a/src/z/parser/js/root.zig +++ b/src/z/parser/js/root.zig @@ -1,10 +1,6 @@ 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"); +pub const grammar = @import("./grammar/root.zig"); test { _ = std.testing.refAllDecls(@This()); |