We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a1e2e commit 7edb75dCopy full SHA for 7edb75d
crates/swc_ecma_minifier/src/program_data.rs
@@ -560,9 +560,7 @@ impl ScopeDataLike for ScopeData {
560
fn add_declared_symbol(&mut self, _: &Ident) {}
561
562
fn merge(&mut self, other: Self, _: bool) {
563
- *self |= other & Self::HAS_WITH_STMT;
564
- *self |= other & Self::HAS_EVAL_CALL;
565
- *self |= other & Self::USED_ARGUMENTS;
+ *self |= other;
566
}
567
568
fn mark_used_arguments(&mut self) {
0 commit comments