aboutsummaryrefslogtreecommitdiff
path: root/src/main_wasm.zig
diff options
context:
space:
mode:
authorGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:38:16 -0800
committerGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:38:16 -0800
commit168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch)
treebe48052eca10da6c2cfcd49fbb66055c65bf6619 /src/main_wasm.zig
parent996ef44c021a692403082c70e0eedc2ce1696eff (diff)
downloadbun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip
move more things
Diffstat (limited to 'src/main_wasm.zig')
-rw-r--r--src/main_wasm.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main_wasm.zig b/src/main_wasm.zig
index 510e92b38..ae7339cf5 100644
--- a/src/main_wasm.zig
+++ b/src/main_wasm.zig
@@ -1,6 +1,6 @@
-const JSParser = @import("./js_parser/js_parser.zig");
-const JSPrinter = @import("./js_printer.zig");
-const JSAst = @import("./js_ast.zig");
+const JSParser = bun.js_parser;
+const JSPrinter = bun.js_printer;
+const JSAst = bun.JSAst;
const Api = @import("./api/schema.zig").Api;
const Logger = @import("bun").logger;
const global = @import("bun");