From: Mihai Bazon Date: Fri, 12 Oct 2012 07:11:01 +0000 (+0300) Subject: use AST_Lambda for object setters/getters X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=fc39553714ab747339c11173e11ca95aaea1ed0c;p=UglifyJS.git use AST_Lambda for object setters/getters so that the optimization that drops the name if unused doesn't apply. close #12 --- diff --git a/lib/parse.js b/lib/parse.js index a87e868d..662e6dc8 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -880,14 +880,14 @@ function parse($TEXT, options) { }); }; - var function_ = function(in_statement) { + var function_ = function(in_statement, ctor) { var name = is("name") ? as_symbol(in_statement ? AST_SymbolDefun : AST_SymbolLambda) : null; if (in_statement && !name) unexpected(); expect("("); - var ctor = in_statement ? AST_Defun : AST_Function; + if (!ctor) ctor = in_statement ? AST_Defun : AST_Function; return new ctor({ name: name, argnames: (function(first, a){ @@ -1158,7 +1158,7 @@ function parse($TEXT, options) { a.push(new AST_ObjectGetter({ start : start, key : name, - value : function_(false), + value : function_(false, AST_Lambda), end : prev() })); continue; @@ -1167,7 +1167,7 @@ function parse($TEXT, options) { a.push(new AST_ObjectSetter({ start : start, key : name, - value : function_(false), + value : function_(false, AST_Lambda), end : prev() })); continue;