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_printer.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/js_printer.zig')
-rw-r--r-- | src/js_printer.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js_printer.zig b/src/js_printer.zig index c597b911b..c25ec9981 100644 --- a/src/js_printer.zig +++ b/src/js_printer.zig @@ -1,8 +1,8 @@ const std = @import("std"); const logger = @import("bun").logger; -const js_lexer = @import("js_lexer.zig"); +const js_lexer = bun.js_lexer; const importRecord = @import("import_record.zig"); -const js_ast = @import("js_ast.zig"); +const js_ast = bun.JSAst; const options = @import("options.zig"); const rename = @import("renamer.zig"); const runtime = @import("runtime.zig"); |