Fix negate_iife transform to return a correct tree for nested IIFEs
Fix for #1256, partially reverts d854523783
This commit is contained in:
@@ -158,3 +158,17 @@ issue_1254_negate_iife_true: {
|
||||
}
|
||||
expect_exact: '!function(){return function(){console.log("test")}}()();'
|
||||
}
|
||||
|
||||
issue_1254_negate_iife_nested: {
|
||||
options = {
|
||||
negate_iife: true,
|
||||
}
|
||||
input: {
|
||||
(function() {
|
||||
return function() {
|
||||
console.log('test')
|
||||
};
|
||||
})()()()()();
|
||||
}
|
||||
expect_exact: '!function(){return function(){console.log("test")}}()()()()();'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user