fix tests
This commit is contained in:
@@ -1269,7 +1269,7 @@ var_catch_toplevel: {
|
||||
|
||||
reassign_const: {
|
||||
options = {
|
||||
cascade: true,
|
||||
collapse_vars: true,
|
||||
sequences: true,
|
||||
side_effects: true,
|
||||
unused: true,
|
||||
|
||||
@@ -489,10 +489,14 @@ hoist_function_with_call: {
|
||||
console.log(o.p.name, o.p === o.p, o.p(o.x), o.p(o.y));
|
||||
}
|
||||
expect: {
|
||||
var o_p = function Foo(value){
|
||||
return 10 * value
|
||||
var o = {
|
||||
p: function Foo(value) {
|
||||
return 10 * value;
|
||||
},
|
||||
x: 1,
|
||||
y: 2
|
||||
};
|
||||
console.log(o_p.name, true, o_p(1), o_p(2));
|
||||
console.log(o.p.name, o.p == o.p, o.p(o.x), o.p(o.y));
|
||||
}
|
||||
expect_stdout: "Foo true 10 20"
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ issue_1212_debug_false: {
|
||||
keep_fargs : true,
|
||||
if_return : true,
|
||||
join_vars : true,
|
||||
cascade : true,
|
||||
collapse_vars : true,
|
||||
side_effects : true,
|
||||
}
|
||||
input: {
|
||||
@@ -52,7 +52,7 @@ issue_1212_debug_true: {
|
||||
keep_fargs : true,
|
||||
if_return : true,
|
||||
join_vars : true,
|
||||
cascade : true,
|
||||
collapse_vars : true,
|
||||
side_effects : true,
|
||||
}
|
||||
input: {
|
||||
|
||||
@@ -11,7 +11,6 @@ same_variable_in_multiple_for_loop: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -54,7 +53,6 @@ same_variable_in_multiple_forOf: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -96,7 +94,6 @@ same_variable_in_multiple_forIn: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -138,7 +135,6 @@ different_variable_in_multiple_for_loop: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -181,7 +177,6 @@ different_variable_in_multiple_forOf: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -223,7 +218,6 @@ different_variable_in_multiple_forIn: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
@@ -265,7 +259,6 @@ more_variable_in_multiple_for: {
|
||||
keep_fargs: true,
|
||||
if_return: true,
|
||||
join_vars: true,
|
||||
cascade: true,
|
||||
side_effects: true,
|
||||
collapse_vars: true,
|
||||
}
|
||||
|
||||
@@ -721,7 +721,7 @@ issue_27: {
|
||||
|
||||
reassign_const: {
|
||||
options = {
|
||||
cascade: true,
|
||||
collapse_vars: true,
|
||||
sequences: true,
|
||||
side_effects: true,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user