diff options
| author | 2023-01-13 11:38:16 -0800 | |
|---|---|---|
| committer | 2023-01-13 11:38:16 -0800 | |
| commit | 168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch) | |
| tree | be48052eca10da6c2cfcd49fbb66055c65bf6619 /src/js_ast.zig | |
| parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
| download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip | |
move more things
Diffstat (limited to 'src/js_ast.zig')
| -rw-r--r-- | src/js_ast.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig index 7b581851f..f82eadf74 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -20,10 +20,10 @@ const allocators = @import("allocators.zig"); const JSC = @import("bun").JSC; const HTTP = @import("bun").HTTP; const RefCtx = @import("./ast/base.zig").RefCtx; -const JSONParser = @import("./json_parser.zig"); +const JSONParser = bun.JSON; const is_bindgen = std.meta.globalOption("bindgen", bool) orelse false; const ComptimeStringMap = bun.ComptimeStringMap; -const JSPrinter = @import("./js_printer.zig"); +const JSPrinter = bun.js_printer; pub fn NewBaseStore(comptime Union: anytype, comptime count: usize) type { var max_size = 0; var max_align = 1; @@ -7112,7 +7112,7 @@ pub const Macro = struct { return false; } - const JSLexer = @import("./js_lexer.zig"); + const JSLexer = bun.js_lexer; var array_iter = JSC.JSPropertyIterator(.{ .skip_empty_name = true, |
