diff options
author | 2022-03-08 18:54:54 -0800 | |
---|---|---|
committer | 2022-03-08 18:54:54 -0800 | |
commit | 701d6ec45d7e339b352b37869bd2a7d4849b35fb (patch) | |
tree | a88a0b03a2e644d5e1bd51eb609526b75f78ef53 /src/cache.zig | |
parent | 787769ac3912fce6d1ffdbd384f19b800e133362 (diff) | |
download | bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.gz bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.zst bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.zip |
rename _global -> bun
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"); |