aboutsummaryrefslogtreecommitdiff
path: root/src/css_scanner.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-03-08 18:54:54 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-03-08 18:54:54 -0800
commit701d6ec45d7e339b352b37869bd2a7d4849b35fb (patch)
treea88a0b03a2e644d5e1bd51eb609526b75f78ef53 /src/css_scanner.zig
parent787769ac3912fce6d1ffdbd384f19b800e133362 (diff)
downloadbun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.gz
bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.zst
bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.zip
rename _global -> bun
Diffstat (limited to 'src/css_scanner.zig')
-rw-r--r--src/css_scanner.zig26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/css_scanner.zig b/src/css_scanner.zig
index 187f1310b..9b3aef961 100644
--- a/src/css_scanner.zig
+++ b/src/css_scanner.zig
@@ -1,18 +1,18 @@
const Fs = @import("fs.zig");
const std = @import("std");
-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 CodePoint = _global.CodePoint;
-const StoredFileDescriptorType = _global.StoredFileDescriptorType;
-const FeatureFlags = _global.FeatureFlags;
-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 CodePoint = bun.CodePoint;
+const StoredFileDescriptorType = bun.StoredFileDescriptorType;
+const FeatureFlags = bun.FeatureFlags;
+const stringZ = bun.stringZ;
+const default_allocator = bun.default_allocator;
+const C = bun.C;
const options = @import("./options.zig");
const import_record = @import("import_record.zig");
const logger = @import("./logger.zig");