- include dead code when `keep_quoted` - unify `keep_quoted` & `reserved` - make `test/run-tests.js` consistent with `minify()` fixes #2256
64 lines
1.1 KiB
JavaScript
64 lines
1.1 KiB
JavaScript
issue_1321_no_debug: {
|
|
mangle = {
|
|
properties: {
|
|
keep_quoted: true,
|
|
},
|
|
}
|
|
input: {
|
|
var x = {};
|
|
x.foo = 1;
|
|
x["a"] = 2 * x.foo;
|
|
console.log(x.foo, x["a"]);
|
|
}
|
|
expect: {
|
|
var x = {};
|
|
x.x = 1;
|
|
x["a"] = 2 * x.x;
|
|
console.log(x.x, x["a"]);
|
|
}
|
|
expect_stdout: true
|
|
}
|
|
|
|
issue_1321_debug: {
|
|
mangle = {
|
|
properties: {
|
|
debug: "",
|
|
keep_quoted: true,
|
|
},
|
|
}
|
|
input: {
|
|
var x = {};
|
|
x.foo = 1;
|
|
x["_$foo$_"] = 2 * x.foo;
|
|
console.log(x.foo, x["_$foo$_"]);
|
|
}
|
|
expect: {
|
|
var x = {};
|
|
x.x = 1;
|
|
x["_$foo$_"] = 2 * x.x;
|
|
console.log(x.x, x["_$foo$_"]);
|
|
}
|
|
expect_stdout: true
|
|
}
|
|
|
|
issue_1321_with_quoted: {
|
|
mangle = {
|
|
properties: {
|
|
keep_quoted: false,
|
|
},
|
|
}
|
|
input: {
|
|
var x = {};
|
|
x.foo = 1;
|
|
x["a"] = 2 * x.foo;
|
|
console.log(x.foo, x["a"]);
|
|
}
|
|
expect: {
|
|
var x = {};
|
|
x.x = 1;
|
|
x["o"] = 2 * x.x;
|
|
console.log(x.x, x["o"]);
|
|
}
|
|
expect_stdout: true
|
|
}
|