Searched refs:AST_New (Results 1 – 11 of 11) sorted by relevance
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
D | output.js | 630 if (p instanceof AST_New && p.expression === this) { 650 if (p instanceof AST_New && p.expression === this) 662 PARENS(AST_New, function(output){ 1071 if (self instanceof AST_New && !need_constructor_parens(self, output)) 1080 DEFPRINT(AST_New, function(self, output){ 1407 DEFMAP(AST_New, basic_sourcemap_gen);
|
D | utils.js | 350 (p instanceof AST_Call && p.expression === node && !(p instanceof AST_New) ) ||
|
D | scope.js | 512 else if (node instanceof AST_New)
|
D | mozilla-ast.js | 251 map("NewExpression", AST_New, "callee>expression, arguments@args");
|
D | ast.js | 613 var AST_New = DEFNODE("New", null, { variable
|
D | parse.js | 1224 return subscripts(new AST_New({
|
D | compress.js | 585 if (node instanceof AST_Call && !(node instanceof AST_New)) { 3088 OPT(AST_New, function(self, compressor){
|
/plugin/asciidocjs/node_modules/uglify-js/lib/ |
D | output.js | 802 … if (p instanceof AST_New && p.expression === node && root_expr(node).TYPE == "Call") return true; 812 if (p instanceof AST_New) return p.expression === node; 827 PARENS(AST_New, function(output) { 1495 DEFPRINT(AST_New, function(output) { 1935 AST_New,
|
D | mozilla-ast.js | 633 map("NewExpression", AST_New, "callee>expression, arguments@args, pure=pure");
|
D | compress.js | 442 …&& (!(value instanceof AST_LambdaExpression) || !(parent instanceof AST_New) && value.contains_thi… 498 … if (parent instanceof AST_Call) return parent.expression !== node || parent instanceof AST_New; 1933 if (!(call instanceof AST_New)) return true; 4705 def(AST_New, return_false); 4791 def(AST_New, return_false); 5596 def(AST_New, return_this); 5710 if (this instanceof AST_New && global_pure_constructors[expr.name]) return true; 8885 if (self instanceof AST_New) { 11244 OPT(AST_New, function(self, compressor) { 11560 if (node instanceof AST_New) return !plain;
|
D | parse.js | 1796 call = new AST_New({ expression: exp, args: args });
|