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_parser.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/js_parser.zig')
-rw-r--r-- | src/js_parser.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js_parser.zig b/src/js_parser.zig index 1dbf1ebf9..86dabc005 100644 --- a/src/js_parser.zig +++ b/src/js_parser.zig @@ -1,10 +1,10 @@ pub const std = @import("std"); pub const logger = @import("bun").logger; -pub const js_lexer = @import("./js_lexer.zig"); +pub const js_lexer = bun.js_lexer; pub const importRecord = @import("./import_record.zig"); -pub const js_ast = @import("./js_ast.zig"); +pub const js_ast = bun.JSAst; pub const options = @import("./options.zig"); -pub const js_printer = @import("./js_printer.zig"); +pub const js_printer = bun.js_printer; pub const renamer = @import("./renamer.zig"); const _runtime = @import("./runtime.zig"); pub const RuntimeImports = _runtime.Runtime.Imports; |