Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(minifier): omit dce
undefined
which can be a shadowed variable (#…
…4073) ``` // Shadowed `undefined` as a variable should not be erased. test( "function foo(undefined) { if (!undefined) { } }", "function foo(undefined){if(!undefined){}}", ); ``` I'm not using the cheap `ident.reference_id.get().is_some()` here yet because I don't know what I'm doing - how should minifier consume `Semantic`?
- Loading branch information