Merge branch 'master' into harmony

Conflicts:
	lib/compress.js
This commit is contained in:
Richard van Velzen
2015-10-12 08:52:34 +02:00
15 changed files with 407 additions and 138 deletions

View File

@@ -1,5 +1,5 @@
unused_funarg_1: {
options = { unused: true, unsafe: true };
options = { unused: true, keep_fargs: false };
input: {
function f(a, b, c, d, e) {
return a + b;
@@ -13,7 +13,7 @@ unused_funarg_1: {
}
unused_funarg_2: {
options = { unused: true, unsafe: true };
options = { unused: true, keep_fargs: false };
input: {
function f(a, b, c, d, e) {
return a + c;
@@ -188,7 +188,7 @@ keep_fnames: {
}
expect: {
function foo() {
return function bar() {};
return function bar(baz) {};
}
}
}