diff options
author | 2023-01-13 11:38:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:38:16 -0800 | |
commit | 168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch) | |
tree | be48052eca10da6c2cfcd49fbb66055c65bf6619 /src/cache.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/cache.zig')
-rw-r--r-- | src/cache.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cache.zig b/src/cache.zig index e59e473e6..b1b934f94 100644 --- a/src/cache.zig +++ b/src/cache.zig @@ -11,10 +11,10 @@ const FeatureFlags = bun.FeatureFlags; const default_allocator = bun.default_allocator; const C = bun.C; -const js_ast = @import("./js_ast.zig"); +const js_ast = bun.JSAst; const logger = @import("bun").logger; -const js_parser = @import("./js_parser.zig"); -const json_parser = @import("./json_parser.zig"); +const js_parser = bun.js_parser; +const json_parser = bun.JSON; const options = @import("./options.zig"); const Define = @import("./defines.zig").Define; const std = @import("std"); |