Home
last modified time | relevance | path

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

/plugin/asciidocjs/node_modules/uglify-js/lib/
Dutils.js264 } else if (p instanceof AST_UnaryPostfix) {
Doutput.js490 if (parent instanceof AST_UnaryPostfix) return true;
1558 DEFPRINT(AST_UnaryPostfix, function(output) {
Dmozilla-ast.js601 return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({
Dparse.js2384 val = make_unary(AST_UnaryPostfix, S.token, val);
Dcompress.js2226 … 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/
Dutils.js355 (p instanceof AST_UnaryPostfix && p.expression === node ))
Dmozilla-ast.js220 return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({
Doutput.js1138 DEFPRINT(AST_UnaryPostfix, function(self, output){
1146 && self.left instanceof AST_UnaryPostfix
Dast.js727 var AST_UnaryPostfix = DEFNODE("UnaryPostfix", null, { variable
Dparse.js1476 val = make_unary(AST_UnaryPostfix, S.token, val);
Dcompress.js1253 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){