Split some things into more files and use bun namespace instead of import more

This commit is contained in:
Jarred SUmner
2023-01-13 11:27:16 -08:00
parent 734b5b89da
commit 996ef44c02
36 changed files with 4943 additions and 4777 deletions

View File

@@ -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);