diff options
Diffstat (limited to 'src/renamer.zig')
-rw-r--r-- | src/renamer.zig | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/renamer.zig b/src/renamer.zig index 5d9b1abaa..3c67e1f56 100644 --- a/src/renamer.zig +++ b/src/renamer.zig @@ -1,14 +1,14 @@ const js_ast = @import("js_ast.zig"); -const _global = @import("global.zig"); -const string = _global.string; -const Output = _global.Output; -const Global = _global.Global; -const Environment = _global.Environment; -const strings = _global.strings; -const MutableString = _global.MutableString; -const stringZ = _global.stringZ; -const default_allocator = _global.default_allocator; -const C = _global.C; +const bun = @import("global.zig"); +const string = bun.string; +const Output = bun.Output; +const Global = bun.Global; +const Environment = bun.Environment; +const strings = bun.strings; +const MutableString = bun.MutableString; +const stringZ = bun.stringZ; +const default_allocator = bun.default_allocator; +const C = bun.C; const std = @import("std"); const Ref = @import("./ast/base.zig").Ref; const logger = @import("logger.zig"); |