fix corner case in evaluate (#3388)

fixes #3387
This commit is contained in:
Alex Lam S.L
2019-04-29 08:55:46 +08:00
committed by GitHub
parent 34075fc4c4
commit 413bbe0480
3 changed files with 55 additions and 33 deletions

View File

@@ -2553,9 +2553,6 @@ merge(Compressor.prototype, {
return this.tail_node().is_string(compressor); return this.tail_node().is_string(compressor);
}); });
def(AST_String, return_true); def(AST_String, return_true);
def(AST_Sub, function(compressor) {
return this.expression.is_string(compressor) && this.property instanceof AST_Number;
});
def(AST_SymbolRef, function(compressor) { def(AST_SymbolRef, function(compressor) {
var fixed = this.fixed_value(); var fixed = this.fixed_value();
if (!fixed) return false; if (!fixed) return false;
@@ -2994,7 +2991,8 @@ merge(Compressor.prototype, {
val = global_objs[exp.name]; val = global_objs[exp.name];
} else { } else {
val = exp._eval(compressor, cached, depth + 1); val = exp._eval(compressor, cached, depth + 1);
if (!val || val === exp || !HOP(val, key)) return this; if (!val || val === exp) return this;
if (typeof val == "object" && !HOP(val, key)) return this;
if (typeof val == "function") switch (key) { if (typeof val == "function") switch (key) {
case "name": case "name":
return val.node.name ? val.node.name.name : ""; return val.node.name ? val.node.name.name : "";

View File

@@ -246,7 +246,7 @@ unsafe_constant: {
} }
expect: { expect: {
console.log( console.log(
true.a, void 0,
false.a, false.a,
null.a, null.a,
(void 0).a (void 0).a
@@ -278,7 +278,7 @@ unsafe_object: {
o + 1, o + 1,
2, 2,
o.b + 1, o.b + 1,
1..b + 1 NaN
); );
} }
expect_stdout: true expect_stdout: true
@@ -365,7 +365,7 @@ unsafe_object_repeated: {
o + 1, o + 1,
2, 2,
o.b + 1, o.b + 1,
1..b + 1 NaN
); );
} }
expect_stdout: true expect_stdout: true
@@ -444,8 +444,8 @@ unsafe_integer_key: {
2, 2,
2, 2,
({0:1})[1] + 1, ({0:1})[1] + 1,
1[1] + 1, NaN,
1["1"] + 1 NaN
); );
} }
expect_stdout: true expect_stdout: true
@@ -500,8 +500,8 @@ unsafe_float_key: {
2, 2,
2, 2,
({2.72:1})[3.14] + 1, ({2.72:1})[3.14] + 1,
1[3.14] + 1, NaN,
1["3.14"] + 1 NaN
); );
} }
expect_stdout: true expect_stdout: true
@@ -635,12 +635,12 @@ unsafe_string_bad_index: {
} }
expect: { expect: {
console.log( console.log(
"1234".a + 1, NaN,
"1234"["a"] + 1, NaN,
"1234"[3.14] + 1 NaN
); );
} }
expect_stdout: true expect_stdout: "NaN NaN NaN"
} }
prototype_function: { prototype_function: {
@@ -1730,3 +1730,30 @@ unsafe_string_replace: {
} }
expect_stdout: "PASS" expect_stdout: "PASS"
} }
issue_3387_1: {
options = {
evaluate: true,
}
input: {
console.log(1 + (2 + "3"[4]));
}
expect: {
console.log(1 + (2 + "3"[4]));
}
expect_stdout: "NaN"
}
issue_3387_2: {
options = {
evaluate: true,
unsafe: true,
}
input: {
console.log(1 + (2 + "3"[4]));
}
expect: {
console.log(NaN);
}
expect_stdout: "NaN"
}

View File

@@ -192,38 +192,35 @@ unsafe_evaluate: {
unused: true, unused: true,
} }
input: { input: {
function f0(){ function f0() {
var a = { var a = { b: 1 };
b:1
};
console.log(a.b + 3); console.log(a.b + 3);
} }
function f1() {
function f1(){
var a = { var a = {
b:{ b: { c: 1 },
c:1 d: 2
},
d:2
}; };
console.log(a.b + 3, a.d + 4, a.b.c + 5, a.d.c + 6); console.log(a.b + 3, a.d + 4, a.b.c + 5, a.d.c + 6);
} }
f0();
f1();
} }
expect: { expect: {
function f0(){ function f0() {
console.log(4); console.log(4);
} }
function f1() {
function f1(){
var a = { var a = {
b:{ b: { c: 1 },
c:1 d: 2
},
d:2
}; };
console.log(a.b + 3, 6, 6, 2..c + 6); console.log(a.b + 3, 6, 6, NaN);
} }
f0();
f1();
} }
expect_stdout: true
} }
unsafe_evaluate_side_effect_free_1: { unsafe_evaluate_side_effect_free_1: {