diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/compress.js b/lib/compress.js index a79b909d..e3139054 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -4376,6 +4376,12 @@ merge(Compressor.prototype, { pop(); return true; } + if (node instanceof AST_LabeledStatement) { + push(); + node.body.walk(tw); + pop(); + return true; + } if (node instanceof AST_Scope) { if (node instanceof AST_Lambda) { references[node.variables.get("arguments").id] = false; |