Skip to content

Commit 88a2186

Browse files
authoredOct 14, 2024··
feat(es/minifier): Support unary negate in cast_to_number (#9642)
**Description:** Adds support for `-` in `cast_to_number`. Before it only worked if `arg` is `Infinity`. Now it uses a recursive call on `arg` so it works for expressions like `-5`, `-[]` etc. This change is important because negative number literals (e.g. `-5`) are a `UnaryExpr` with `op`=`-` & `arg`=`5`, unless you apply `expr_simplifier` pass or something else that uses it.
1 parent 085bc19 commit 88a2186

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed
 

‎.changeset/lazy-ladybugs-jump.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
swc_ecma_utils: patch
3+
swc_core: patch
4+
---
5+
6+
feat(es/minifier): Support unary negate in `cast_to_number`

‎crates/swc_ecma_utils/src/lib.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -933,17 +933,10 @@ pub trait ExprExt {
933933
op: op!(unary, "-"),
934934
arg,
935935
..
936-
}) if matches!(
937-
&**arg,
938-
Expr::Ident(Ident {
939-
sym,
940-
ctxt,
941-
..
942-
}) if &**sym == "Infinity" && *ctxt == ctx.unresolved_ctxt
943-
) =>
944-
{
945-
-f64::INFINITY
946-
}
936+
}) => match arg.cast_to_number(ctx) {
937+
(Pure, Known(v)) => -v,
938+
_ => return (MayBeImpure, Unknown),
939+
},
947940
Expr::Unary(UnaryExpr {
948941
op: op!("!"),
949942
ref arg,

0 commit comments

Comments
 (0)
Please sign in to comment.