diff options
author | kzc <zaxxon2011@gmail.com> | 2016-08-16 21:54:54 -0400 |
---|---|---|
committer | kzc <zaxxon2011@gmail.com> | 2016-08-17 01:29:34 -0400 |
commit | d854523783b4a73d1dd734605f1c41fcae86e932 (patch) | |
tree | a338beec781561576005ce136af78b261ee99e12 /lib/output.js | |
parent | 781f26eda1327265f15ef5a213c69b5f9a551ca2 (diff) | |
download | tracifyjs-d854523783b4a73d1dd734605f1c41fcae86e932.tar.gz tracifyjs-d854523783b4a73d1dd734605f1c41fcae86e932.zip |
Fix negate_iife regression #1254
Diffstat (limited to 'lib/output.js')
-rw-r--r-- | lib/output.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/output.js b/lib/output.js index 801f7516..f1e0c2f1 100644 --- a/lib/output.js +++ b/lib/output.js @@ -531,6 +531,8 @@ function OutputStream(options) { }); PARENS([ AST_Unary, AST_Undefined ], function(output){ + if (this.expression instanceof AST_Call) + return false; var p = output.parent(); return p instanceof AST_PropAccess && p.expression === this || p instanceof AST_Call && p.expression === this; |