Searched refs:AST_Call (Results 1 – 14 of 14) sorted by relevance
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | output.js | 573 return p instanceof AST_Call && p.expression === this; 588 || p instanceof AST_Call && p.expression === this; 593 return p instanceof AST_Call // (foo, bar)() or foo(1, (2, 3), 4) 608 if (p instanceof AST_Call && p.expression === this) 639 if (node instanceof AST_Call) throw p; 648 PARENS(AST_Call, function(output){ 666 || p instanceof AST_Call && p.expression === this)) // (new foo)(bar) 689 if (p instanceof AST_Call && p.expression === this) 1069 DEFPRINT(AST_Call, function(self, output){ 1083 AST_Call.prototype._codegen(self, output); class
|
| D | transform.js | 172 _(AST_Call, function(self, tw){
|
| D | compress.js | 278 || parent instanceof AST_Call && node !== parent.expression 324 && (iife = tw.parent()) instanceof AST_Call 466 || !func && parent instanceof AST_Call && parent.expression === node) { 549 || parent instanceof AST_Call && parent.expression === orig 585 if (node instanceof AST_Call && !(node instanceof AST_New)) { 1732 AST_Call.DEFMETHOD("has_pure_annotation", function(compressor) { 1754 def(AST_Call, function(compressor){ 2317 def(AST_Call, function(compressor, first_in_statement){ 2826 OPT(AST_Call, function(self, compressor){ 3098 return make_node(AST_Call, self, self).transform(compressor); [all …]
|
| D | ast.js | 596 var AST_Call = DEFNODE("Call", "expression args", { variable 615 }, AST_Call);
|
| D | utils.js | 350 (p instanceof AST_Call && p.expression === node && !(p instanceof AST_New) ) ||
|
| D | scope.js | 203 if (name == "eval" && tw.parent() instanceof AST_Call) {
|
| D | mozilla-ast.js | 252 map("CallExpression", AST_Call, "callee>expression, arguments@args");
|
| D | parse.js | 1454 return subscripts(new AST_Call({
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | output.js | 677 … if (output.option("wrap_iife") && p instanceof AST_Call && p.expression === this) return true; 698 if (p instanceof AST_Call) return p.expression === this; 723 || p instanceof AST_Call 775 if (p instanceof AST_Call) return p.expression === this; 789 if (!(parent instanceof AST_Call || parent instanceof AST_PropAccess)) return false; 809 PARENS(AST_Call, function(output) { 831 if (p instanceof AST_Call) return p.expression === this; 852 if (p instanceof AST_Call) return p.expression === self; 1475 if (parent instanceof AST_Call && parent.expression === node) return; 1488 DEFPRINT(AST_Call, function(output) {
|
| D | compress.js | 141 if (node instanceof AST_Call) { 151 if (node instanceof AST_Call) { 363 return make_node(AST_Call, self, { 438 if (parent instanceof AST_Call) { 498 … if (parent instanceof AST_Call) return parent.expression !== node || parent instanceof AST_New; 772 if (parent instanceof AST_Call && parent.expression === node) return; 1110 def(AST_Call, function(tw, descend) { 1425 && (!d.in_loop || tw.parent() instanceof AST_Call) 1446 && !((parent = tw.parent()) instanceof AST_Call && parent.expression === ref)) { 2525 if (node instanceof AST_Call) { [all …]
|
| D | transform.js | 159 DEF(AST_Call, function(self, tw) {
|
| D | mozilla-ast.js | 434 return new AST_Call({ 634 …map("CallExpression", AST_Call, "callee>expression, arguments@args, optional=optional, pure=pure");
|
| D | parse.js | 2304 expr = new AST_Call({ 2328 if (expr instanceof AST_Call && !expr.pure) {
|
| /plugin/asciidocjs/node_modules/uglify-js/bin/ |
| D | uglifyjs | 348 if (!(node instanceof UglifyJS.AST_Call)) return;
|