diff options
author | 2023-01-13 11:27:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:27:16 -0800 | |
commit | 996ef44c021a692403082c70e0eedc2ce1696eff (patch) | |
tree | a2d238991ca017a30ffa01e2cc005f802cbac15f /src/json_parser.zig | |
parent | 734b5b89da07fa074ea1c2a1013f32a56fc58637 (diff) | |
download | bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.gz bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.zst bun-996ef44c021a692403082c70e0eedc2ce1696eff.zip |
Split some things into more files and use bun namespace instead of import more
Diffstat (limited to 'src/json_parser.zig')
-rw-r--r-- | src/json_parser.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/json_parser.zig b/src/json_parser.zig index 9ce9fea7c..d7b285a13 100644 --- a/src/json_parser.zig +++ b/src/json_parser.zig @@ -917,8 +917,8 @@ const js_printer = @import("js_printer.zig"); const renamer = @import("renamer.zig"); const SymbolList = [][]Symbol; -const Bundler = @import("./bundler.zig").Bundler; -const ParseResult = @import("./bundler.zig").ParseResult; +const Bundler = bun.Bundler; +const ParseResult = bun.bundler.ParseResult; fn expectPrintedJSON(_contents: string, expected: string) !void { Expr.Data.Store.create(default_allocator); Stmt.Data.Store.create(default_allocator); |