diff options
author | 2021-09-26 20:03:49 -0700 | |
---|---|---|
committer | 2021-09-26 20:03:49 -0700 | |
commit | 018ba2c83bf3c2e925ec3273c5f936cb4aff434f (patch) | |
tree | 9b028dd9911c8ecc17fec29076c91cf035728a7c /src/bundler.zig | |
parent | 66ed7c1f30d1ba6569efa114c9d90ccac45fb86a (diff) | |
download | bun-018ba2c83bf3c2e925ec3273c5f936cb4aff434f.tar.gz bun-018ba2c83bf3c2e925ec3273c5f936cb4aff434f.tar.zst bun-018ba2c83bf3c2e925ec3273c5f936cb4aff434f.zip |
Most of macro implementation
Diffstat (limited to 'src/bundler.zig')
-rw-r--r-- | src/bundler.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bundler.zig b/src/bundler.zig index d36795d52..64982c822 100644 --- a/src/bundler.zig +++ b/src/bundler.zig @@ -133,6 +133,7 @@ pub const Bundler = struct { to.log = try allocator.create(logger.Log); to.log.* = logger.Log.init(allocator); to.setLog(to.log); + to.macro_context = null; } pub fn setLog(this: *ThisBundler, log: *logger.Log) void { |