diff options
Diffstat (limited to 'src/cache.zig')
-rw-r--r-- | src/cache.zig | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/cache.zig b/src/cache.zig index fee17e30b..6a13726d6 100644 --- a/src/cache.zig +++ b/src/cache.zig @@ -1,15 +1,15 @@ -const _global = @import("global.zig"); -const string = _global.string; -const Output = _global.Output; -const StoredFileDescriptorType = _global.StoredFileDescriptorType; -const Global = _global.Global; -const Environment = _global.Environment; -const strings = _global.strings; -const MutableString = _global.MutableString; -const stringZ = _global.stringZ; -const FeatureFlags = _global.FeatureFlags; -const default_allocator = _global.default_allocator; -const C = _global.C; +const bun = @import("global.zig"); +const string = bun.string; +const Output = bun.Output; +const StoredFileDescriptorType = bun.StoredFileDescriptorType; +const Global = bun.Global; +const Environment = bun.Environment; +const strings = bun.strings; +const MutableString = bun.MutableString; +const stringZ = bun.stringZ; +const FeatureFlags = bun.FeatureFlags; +const default_allocator = bun.default_allocator; +const C = bun.C; const js_ast = @import("./js_ast.zig"); const logger = @import("./logger.zig"); |