Fix negate_iife transform to return a correct tree for nested IIFEs

Fix for #1256, partially reverts d854523783
This commit is contained in:
Richard van Velzen
2016-08-17 11:43:50 +02:00
parent 614db97cca
commit 8430123e9d
4 changed files with 29 additions and 3 deletions

View File

@@ -75,3 +75,10 @@ call_with_unary_arguments: {
}
expect_exact: "x();x(-1);x(-1,-2);x(void 1,+2,-3,~4,!5,--a,++b,c--,d++,typeof e,delete f);(-1)();(-1)(-2);"
}
new_with_unary_prefix: {
input: {
var bar = (+new Date()).toString(32);
}
expect_exact: 'var bar=(+new Date).toString(32);';
}