aboutsummaryrefslogtreecommitdiff
path: root/src/z/js/parser/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-07-30 07:46:37 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-07-30 07:46:37 +0200
commitc8744f9f6a28a23b83603435a3ad987f0d9f181b (patch)
treee0257c54661e9f34b6d2ce8658346f36aa0ff9e3 /src/z/js/parser/root.zig
parentd1776161dcc57b600ce7b18c5e7179757491fbc2 (diff)
temporal commit
Diffstat (limited to 'src/z/js/parser/root.zig')
-rw-r--r--src/z/js/parser/root.zig11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/z/js/parser/root.zig b/src/z/js/parser/root.zig
new file mode 100644
index 0000000..a6be9ca
--- /dev/null
+++ b/src/z/js/parser/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());
+}