Skip to content

Commit 312f0d8

Browse files
authoredMar 12, 2024··
fix(es/minifier): Fix removal of array pattern bindings (#8730)
**Related issue:** - Closes #8670
1 parent e46dd5a commit 312f0d8

File tree

7 files changed

+31
-11
lines changed

7 files changed

+31
-11
lines changed
 

‎crates/swc_ecma_minifier/src/compress/optimize/unused.rs

+6-9
Original file line numberDiff line numberDiff line change
@@ -345,25 +345,22 @@ impl Optimizer<'_> {
345345
}
346346

347347
Pat::Array(arr) => {
348-
for (idx, elem) in arr.elems.iter_mut().enumerate() {
349-
match elem {
348+
for (idx, arr_elem) in arr.elems.iter_mut().enumerate() {
349+
match arr_elem {
350350
Some(p) => {
351-
if p.is_ident() {
352-
continue;
353-
}
354-
355351
let elem = init
356352
.as_mut()
357353
.and_then(|expr| self.access_numeric_property(expr, idx));
358354

359355
self.take_pat_if_unused(p, elem, is_var_decl);
356+
357+
if p.is_invalid() {
358+
*arr_elem = None;
359+
}
360360
}
361361
None => {}
362362
}
363363
}
364-
365-
arr.elems
366-
.retain(|elem| !matches!(elem, Some(Pat::Invalid(..))))
367364
}
368365

369366
Pat::Object(obj) => {

‎crates/swc_ecma_minifier/tests/TODO.txt

-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ harmony/issue_2874_2/input.js
184184
harmony/module_enabled/input.js
185185
harmony/module_mangle_scope/input.js
186186
harmony/regression_cannot_use_of/input.js
187-
hoist_props/contains_this_3/input.js
188187
hoist_props/hoist_function_with_call/input.js
189188
if_return/if_return_same_value/input.js
190189
if_return/if_var_return/input.js
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"defaults": true,
3+
"pure_getters": true,
4+
"toplevel": true
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const [a, b, c, d, e] = [1, 2, 3, 4, 5]
2+
console.log(c)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const [, , c, , ] = [
2+
1,
3+
2,
4+
3,
5+
4,
6+
5
7+
];
8+
console.log(c);

‎crates/swc_ecma_minifier/tests/passing.txt

+1
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,7 @@ hoist/hoist_no_destructurings/input.js
739739
hoist/hoist_vars/input.js
740740
hoist_props/contains_this_1/input.js
741741
hoist_props/contains_this_2/input.js
742+
hoist_props/contains_this_3/input.js
742743
hoist_props/direct_access_1/input.js
743744
hoist_props/direct_access_2/input.js
744745
hoist_props/direct_access_3/input.js
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
const [, w, , x, { z: z }] = [1, 2, 3, 4, { z: 5 }];
1+
const [, , , x, { z: z }] = [
2+
1,
3+
2,
4+
3,
5+
4,
6+
{
7+
z: 5
8+
}
9+
];
210
console.log(x, z);

0 commit comments

Comments
 (0)
Please sign in to comment.