From 31c4a37e37acc1e3ddd44c6c23f61a330e7b1484 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Fri, 21 Dec 2012 21:04:15 +0200 Subject: [PATCH] =?utf8?q?Optimize=20new=20Array(1,=202,=203)=20=E2=86=92?= =?utf8?q?=20[1,=202,=203]?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Close #74 --- lib/compress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress.js b/lib/compress.js index 9387a821..0f3a795c 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -1601,7 +1601,7 @@ merge(Compressor.prototype, { case "Function": case "Error": case "Array": - return make_node(AST_Call, self, self); + return make_node(AST_Call, self, self).transform(compressor); } } } -- 2.34.1