Home
last modified time | relevance | path

Searched refs:AST_Call (Results 1 – 14 of 14) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Doutput.js573 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
Dtransform.js172 _(AST_Call, function(self, tw){
Dcompress.js278 || 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 …]
Dast.js596 var AST_Call = DEFNODE("Call", "expression args", { variable
615 }, AST_Call);
Dutils.js350 (p instanceof AST_Call && p.expression === node && !(p instanceof AST_New) ) ||
Dscope.js203 if (name == "eval" && tw.parent() instanceof AST_Call) {
Dmozilla-ast.js252 map("CallExpression", AST_Call, "callee>expression, arguments@args");
Dparse.js1454 return subscripts(new AST_Call({
/plugin/asciidocjs/node_modules/uglify-js/lib/
Doutput.js677 … 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) {
Dcompress.js141 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 …]
Dtransform.js159 DEF(AST_Call, function(self, tw) {
Dmozilla-ast.js434 return new AST_Call({
634 …map("CallExpression", AST_Call, "callee>expression, arguments@args, optional=optional, pure=pure");
Dparse.js2304 expr = new AST_Call({
2328 if (expr instanceof AST_Call && !expr.pure) {
/plugin/asciidocjs/node_modules/uglify-js/bin/
Duglifyjs348 if (!(node instanceof UglifyJS.AST_Call)) return;