diff options
Diffstat (limited to 'src/js_ast.zig')
-rw-r--r-- | src/js_ast.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig index 005b2c66e..91698d344 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -941,9 +941,9 @@ pub const E = struct { pub inline fn init(ref: Ref) Identifier { return Identifier{ .ref = ref, - .must_keep_due_to_with_stmt = true, - .can_be_removed_if_unused = true, - .call_can_be_unwrapped_if_unused = true, + .must_keep_due_to_with_stmt = false, + .can_be_removed_if_unused = false, + .call_can_be_unwrapped_if_unused = false, }; } }; |