aboutsummaryrefslogtreecommitdiff
path: root/src/z/parser/js/ast/loc.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-07-30 10:24:19 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-07-30 10:24:19 +0200
commit00920ddd36a8ebb851b52c3c048c0017753176bd (patch)
tree8498e65ca6c055333aa95b6c3a0d28c8370cb0ef /src/z/parser/js/ast/loc.zig
parente8259360516078517a2fbeddbf781f701f35d0d0 (diff)
complete js parser + minifierjs-parser
Diffstat (limited to 'src/z/parser/js/ast/loc.zig')
-rw-r--r--src/z/parser/js/ast/loc.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/z/parser/js/ast/loc.zig b/src/z/parser/js/ast/loc.zig
new file mode 100644
index 0000000..276d05c
--- /dev/null
+++ b/src/z/parser/js/ast/loc.zig
@@ -0,0 +1,4 @@
+pub const Loc = struct {
+ start: usize,
+ end: usize,
+};