diff options
Diffstat (limited to 'src/defines-table.zig')
-rw-r--r-- | src/defines-table.zig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/defines-table.zig b/src/defines-table.zig index a09d304df..1e12d21f7 100644 --- a/src/defines-table.zig +++ b/src/defines-table.zig @@ -1,4 +1,13 @@ -usingnamespace @import("global.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; // If something is in this list, then a direct identifier expression or property // access chain matching this will be assumed to have no side effects and will |