convert to number under boolean context (#2545)
This commit is contained in:
@@ -4699,6 +4699,9 @@ merge(Compressor.prototype, {
|
||||
});
|
||||
|
||||
OPT(AST_Boolean, function(self, compressor){
|
||||
if (compressor.in_boolean_context()) return make_node(AST_Number, self, {
|
||||
value: +self.value
|
||||
});
|
||||
if (compressor.option("booleans")) {
|
||||
var p = compressor.parent();
|
||||
if (p instanceof AST_Binary && (p.operator == "=="
|
||||
|
||||
@@ -1037,10 +1037,10 @@ issue_2535: {
|
||||
expect: {
|
||||
y();
|
||||
x() && y();
|
||||
(x(), 0) || y();
|
||||
(x(), 1) && y();
|
||||
x() && y();
|
||||
x() && y();
|
||||
x() && y();
|
||||
(x(), 1) || y();
|
||||
(x(), 0) && y();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ issue_1639_1: {
|
||||
}
|
||||
expect: {
|
||||
for (var a = 100, b = 10, L1 = 5; --L1 > 0;)
|
||||
if (--b, !1) var ignore = 0;
|
||||
if (--b, 0) var ignore = 0;
|
||||
console.log(a, b);
|
||||
}
|
||||
expect_stdout: true
|
||||
@@ -57,7 +57,7 @@ issue_1639_2: {
|
||||
expect: {
|
||||
var a = 100, b = 10;
|
||||
function f19() {
|
||||
++a, 1;
|
||||
++a, 0;
|
||||
}
|
||||
f19(),
|
||||
console.log(a, b);
|
||||
|
||||
@@ -17,6 +17,6 @@ wrongly_optimized: {
|
||||
foo();
|
||||
}
|
||||
// TODO: optimize to `func(), bar()`
|
||||
(func(), 0) || bar();
|
||||
(func(), 1) && bar();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ wrongly_optimized: {
|
||||
foo();
|
||||
}
|
||||
// TODO: optimize to `func(), bar()`
|
||||
if (func(), !0) bar();
|
||||
if (func(), 1) bar();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -2347,7 +2347,7 @@ booleans: {
|
||||
}
|
||||
expect: {
|
||||
console.log(function(a) {
|
||||
if (!1);
|
||||
if (0);
|
||||
switch (!1) {
|
||||
case 0:
|
||||
return "FAIL";
|
||||
|
||||
@@ -45,9 +45,9 @@ condition_evaluate: {
|
||||
if (void 0 == null);
|
||||
}
|
||||
expect: {
|
||||
while (!1);
|
||||
for (; !0;);
|
||||
if (!0);
|
||||
while (0);
|
||||
for (; 1;);
|
||||
if (1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ typeof_in_boolean_context: {
|
||||
function f2() { return g(), "Yes"; }
|
||||
foo();
|
||||
console.log(1);
|
||||
var a = !(console.log(2), !0);
|
||||
var a = !(console.log(2), 1);
|
||||
foo();
|
||||
}
|
||||
}
|
||||
@@ -57,6 +57,6 @@ issue_1668: {
|
||||
if (typeof bar);
|
||||
}
|
||||
expect: {
|
||||
if (!0);
|
||||
if (1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user