Searched refs:AST_UnaryPostfix (Results 1 – 11 of 11) sorted by relevance
/plugin/asciidocjs/node_modules/uglify-js/lib/ |
D | utils.js | 264 } else if (p instanceof AST_UnaryPostfix) {
|
D | output.js | 490 if (parent instanceof AST_UnaryPostfix) return true; 1558 DEFPRINT(AST_UnaryPostfix, function(output) {
|
D | mozilla-ast.js | 601 return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({
|
D | parse.js | 2384 val = make_unary(AST_UnaryPostfix, S.token, val);
|
D | compress.js | 2226 … if (candidate instanceof AST_UnaryPostfix) return make_node(AST_UnaryPrefix, candidate, { 4621 def(AST_UnaryPostfix, return_false); 4674 def(AST_UnaryPostfix, return_true); 5295 def(AST_UnaryPostfix, function(compressor, ignore_side_effects, cached, depth) { 7218 } else if (node instanceof AST_UnaryPostfix 11369 OPT(AST_UnaryPostfix, function(self, compressor) {
|
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
D | utils.js | 355 (p instanceof AST_UnaryPostfix && p.expression === node ))
|
D | mozilla-ast.js | 220 return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({
|
D | output.js | 1138 DEFPRINT(AST_UnaryPostfix, function(self, output){ 1146 && self.left instanceof AST_UnaryPostfix
|
D | ast.js | 727 var AST_UnaryPostfix = DEFNODE("UnaryPostfix", null, { variable
|
D | parse.js | 1476 val = make_unary(AST_UnaryPostfix, S.token, val);
|
D | compress.js | 1253 def(AST_UnaryPostfix, return_false); 3127 … var car = self.car instanceof AST_UnaryPostfix ? make_node(AST_UnaryPrefix, self.car, { 3177 OPT(AST_UnaryPostfix, function(self, compressor){
|