Home
last modified time | relevance | path

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

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dparse.js285 S.regex_allowed = ((type == "operator" && !UNARY_POSTFIX(value)) ||
658 var UNARY_POSTFIX = makePredicate([ "--", "++" ]); variable
1475 while (is("operator") && UNARY_POSTFIX(S.token.value) && !S.token.nlb) {
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dparse.js323 S.regex_allowed = type == "operator" && !UNARY_POSTFIX[value]
651 var UNARY_POSTFIX = makePredicate("-- ++"); variable
2383 while (is("operator") && UNARY_POSTFIX[S.token.value] && !has_newline_before(S.token)) {
Dcompress.js1500 if (!UNARY_POSTFIX[node.operator]) return;
2897 if (UNARY_POSTFIX[expr.operator]) {
5131 … if (node instanceof AST_Unary && UNARY_POSTFIX[node.operator]) modified(node.expression);
6569 if (!UNARY_POSTFIX[node.operator]) return;
11604 if (node instanceof AST_UnaryPrefix && UNARY_POSTFIX[node.operator]) {