diff options
Diffstat (limited to 'src/toml')
-rw-r--r-- | src/toml/toml_lexer.zig | 20 | ||||
-rw-r--r-- | src/toml/toml_parser.zig | 20 |
2 files changed, 20 insertions, 20 deletions
diff --git a/src/toml/toml_lexer.zig b/src/toml/toml_lexer.zig index bb13d1658..71e6378fb 100644 --- a/src/toml/toml_lexer.zig +++ b/src/toml/toml_lexer.zig @@ -2,16 +2,16 @@ const std = @import("std"); const logger = @import("../logger.zig"); 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 CodePoint = _global.CodePoint; -const MutableString = _global.MutableString; -const stringZ = _global.stringZ; -const default_allocator = _global.default_allocator; +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 CodePoint = bun.CodePoint; +const MutableString = bun.MutableString; +const stringZ = bun.stringZ; +const default_allocator = bun.default_allocator; pub const T = enum { t_end_of_file, diff --git a/src/toml/toml_parser.zig b/src/toml/toml_parser.zig index b91e83325..f4014404e 100644 --- a/src/toml/toml_parser.zig +++ b/src/toml/toml_parser.zig @@ -7,16 +7,16 @@ const js_ast = @import("../js_ast.zig"); const options = @import("../options.zig"); const fs = @import("../fs.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 expect = std.testing.expect; const ImportKind = importRecord.ImportKind; const BindingNodeIndex = js_ast.BindingNodeIndex; |