avoid substitution of global variables (#1557)

- unless `toplevel` is enabled
- global `const` works as before
This commit is contained in:
Alex Lam S.L
2017-03-07 03:11:03 +08:00
committed by GitHub
parent 3ac2421932
commit d787d70127
3 changed files with 306 additions and 93 deletions

View File

@@ -223,6 +223,7 @@ merge(Compressor.prototype, {
AST_Node.DEFMETHOD("reset_opt_flags", function(compressor, rescan){
var reduce_vars = rescan && compressor.option("reduce_vars");
var toplevel = compressor.option("toplevel");
var ie8 = !compressor.option("screw_ie8");
var safe_ids = [];
push();
@@ -334,7 +335,11 @@ merge(Compressor.prototype, {
}
function reset_def(def) {
if (toplevel || !def.global || def.orig[0] instanceof AST_SymbolConst) {
def.fixed = undefined;
} else {
def.fixed = false;
}
def.references = [];
def.should_replace = undefined;
}

View File

@@ -123,6 +123,7 @@ dead_code_const_annotation: {
conditionals : true,
evaluate : true,
reduce_vars : true,
toplevel : true,
};
input: {
var unused;
@@ -172,6 +173,7 @@ dead_code_const_annotation_complex_scope: {
conditionals : true,
evaluate : true,
reduce_vars : true,
toplevel : true,
};
input: {
var unused_var;

View File

@@ -6,6 +6,7 @@ reduce_vars: {
C : 0
},
reduce_vars : true,
toplevel : true,
unused : true
}
input: {
@@ -452,6 +453,7 @@ multi_def_2: {
reduce_vars: true,
}
input: {
function f(){
if (code == 16)
var bitsLength = 2, bitsOffset = 3, what = len;
else if (code == 17)
@@ -460,7 +462,9 @@ multi_def_2: {
var bitsLength = 7, bitsOffset = 11, what = (len = 0);
var repeatLength = this.getBits(bitsLength) + bitsOffset;
}
}
expect: {
function f(){
if (16 == code)
var bitsLength = 2, bitsOffset = 3, what = len;
else if (17 == code)
@@ -470,6 +474,7 @@ multi_def_2: {
var repeatLength = this.getBits(bitsLength) + bitsOffset;
}
}
}
use_before_var: {
options = {
@@ -477,14 +482,18 @@ use_before_var: {
reduce_vars: true,
}
input: {
function f(){
console.log(t);
var t = 1;
}
}
expect: {
function f(){
console.log(t);
var t = 1;
}
}
}
inner_var_if: {
options = {
@@ -492,24 +501,22 @@ inner_var_if: {
reduce_vars: true,
}
input: {
function f(){
return 0;
}
if (f())
function f(a){
if (a)
var t = 1;
if (!t)
console.log(t);
}
}
expect: {
function f(){
return 0;
}
if (f())
function f(a){
if (a)
var t = 1;
if (!t)
console.log(t);
}
}
}
inner_var_label: {
options = {
@@ -517,26 +524,24 @@ inner_var_label: {
reduce_vars: true,
}
input: {
function f(){
return 1;
}
function f(a){
l: {
if (f()) break l;
if (a) break l;
var t = 1;
}
console.log(t);
}
}
expect: {
function f(){
return 1;
}
function f(a){
l: {
if (f()) break l;
if (a) break l;
var t = 1;
}
console.log(t);
}
}
}
inner_var_for: {
options = {
@@ -544,15 +549,18 @@ inner_var_for: {
reduce_vars: true,
}
input: {
function f() {
var a = 1;
x(a, b, d);
for (var b = 2, c = 3; x(a, b, c, d); x(a, b, c, d)) {
var d = 4, e = 5;
x(a, b, c, d, e);
}
x(a, b, c, d, e)
x(a, b, c, d, e);
}
}
expect: {
function f() {
var a = 1;
x(1, b, d);
for (var b = 2, c = 3; x(1, b, 3, d); x(1, b, 3, d)) {
@@ -562,6 +570,7 @@ inner_var_for: {
x(1, b, 3, d, e);
}
}
}
inner_var_for_in_1: {
options = {
@@ -569,6 +578,7 @@ inner_var_for_in_1: {
reduce_vars: true,
}
input: {
function f() {
var a = 1, b = 2;
for (b in (function() {
return x(a, b, c);
@@ -578,7 +588,9 @@ inner_var_for_in_1: {
}
x(a, b, c, d);
}
}
expect: {
function f() {
var a = 1, b = 2;
for (b in (function() {
return x(1, b, c);
@@ -589,6 +601,7 @@ inner_var_for_in_1: {
x(1, b, c, d);
}
}
}
inner_var_for_in_2: {
options = {
@@ -596,14 +609,18 @@ inner_var_for_in_2: {
reduce_vars: true,
}
input: {
function f() {
for (var long_name in {})
console.log(long_name);
}
}
expect: {
function f() {
for (var long_name in {})
console.log(long_name);
}
}
}
inner_var_catch: {
options = {
@@ -611,6 +628,7 @@ inner_var_catch: {
reduce_vars: true,
}
input: {
function f() {
try {
a();
} catch (e) {
@@ -618,7 +636,9 @@ inner_var_catch: {
}
console.log(b);
}
}
expect: {
function f() {
try {
a();
} catch (e) {
@@ -627,6 +647,7 @@ inner_var_catch: {
console.log(b);
}
}
}
issue_1533_1: {
options = {
@@ -634,16 +655,20 @@ issue_1533_1: {
reduce_vars: true,
}
input: {
function f() {
var id = "";
for (id in {break: "me"})
console.log(id);
}
}
expect: {
function f() {
var id = "";
for (id in {break: "me"})
console.log(id);
}
}
}
issue_1533_2: {
options = {
@@ -651,15 +676,196 @@ issue_1533_2: {
reduce_vars: true,
}
input: {
function f() {
var id = "";
for (var id in {break: "me"})
console.log(id);
console.log(id);
}
}
expect: {
function f() {
var id = "";
for (var id in {break: "me"})
console.log(id);
console.log(id);
}
}
}
toplevel_on: {
options = {
evaluate: true,
reduce_vars: true,
toplevel:true,
unused: true,
}
input: {
var x = 3;
console.log(x);
}
expect: {
console.log(3);
}
}
toplevel_off: {
options = {
evaluate: true,
reduce_vars: true,
toplevel:false,
unused: true,
}
input: {
var x = 3;
console.log(x);
}
expect: {
var x = 3;
console.log(x);
}
}
toplevel_on_loops_1: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:true,
unused: true,
}
input: {
function bar() {
console.log("bar:", --x);
}
var x = 3;
do
bar();
while (x);
}
expect: {
function bar() {
console.log("bar:", --x);
}
var x = 3;
do
bar();
while (x);
}
}
toplevel_off_loops_1: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:false,
unused: true,
}
input: {
function bar() {
console.log("bar:", --x);
}
var x = 3;
do
bar();
while (x);
}
expect: {
function bar() {
console.log("bar:", --x);
}
var x = 3;
do
bar();
while (x);
}
}
toplevel_on_loops_2: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:true,
unused: true,
}
input: {
function bar() {
console.log("bar:");
}
var x = 3;
do
bar();
while (x);
}
expect: {
function bar() {
console.log("bar:");
}
for (;;) bar();
}
}
toplevel_off_loops_2: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:false,
unused: true,
}
input: {
function bar() {
console.log("bar:");
}
var x = 3;
do
bar();
while (x);
}
expect: {
function bar() {
console.log("bar:");
}
var x = 3;
do
bar();
while (x);
}
}
toplevel_on_loops_3: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:true,
unused: true,
}
input: {
var x = 3;
while (x) bar();
}
expect: {
for (;;) bar();
}
}
toplevel_off_loops_3: {
options = {
evaluate: true,
loops: true,
reduce_vars: true,
toplevel:false,
unused: true,
}
input: {
var x = 3;
while (x) bar();
}
expect: {
var x = 3;
for (;x;) bar();
}
}