Home
last modified time | relevance | path

Searched refs:unary_side_effects (Results 1 – 3 of 3) sorted by relevance

/plugin/asciidocjs/node_modules/uglify-js/lib/
Dscope.js125 var unary_side_effects = makePredicate("delete ++ --"); variable
133 … if (parent instanceof AST_Unary) return unary_side_effects[parent.operator] && parent.expression;
Dcompress.js775 if (parent instanceof AST_Unary && !unary_side_effects[parent.operator]) return;
5923 return unary_side_effects[this.operator]
9113 if (unary_side_effects[this.operator]) {
12223 … if (unary_side_effects[node.operator] && node.expression instanceof AST_PropAccess) {
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dcompress.js1371 var unary_side_effects = makePredicate("delete ++ --");
1374 … if (parent instanceof AST_Unary && unary_side_effects(parent.operator)) return parent.expression;
1810 return unary_side_effects(this.operator)
2376 if (unary_side_effects(this.operator)) return this;
3145 || cdr instanceof AST_Unary && !unary_side_effects(cdr.operator)) {