Home
last modified time | relevance | path

Searched refs:AST_New (Results 1 – 11 of 11) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Doutput.js630 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);
Dutils.js350 (p instanceof AST_Call && p.expression === node && !(p instanceof AST_New) ) ||
Dscope.js512 else if (node instanceof AST_New)
Dmozilla-ast.js251 map("NewExpression", AST_New, "callee>expression, arguments@args");
Dast.js613 var AST_New = DEFNODE("New", null, { variable
Dparse.js1224 return subscripts(new AST_New({
Dcompress.js585 if (node instanceof AST_Call && !(node instanceof AST_New)) {
3088 OPT(AST_New, function(self, compressor){
/plugin/asciidocjs/node_modules/uglify-js/lib/
Doutput.js802 … 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,
Dmozilla-ast.js633 map("NewExpression", AST_New, "callee>expression, arguments@args, pure=pure");
Dcompress.js442 …&& (!(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;
Dparse.js1796 call = new AST_New({ expression: exp, args: args });