Home
last modified time | relevance | path

Searched refs:is_identifier_char (Results 1 – 4 of 4) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ !
Dparse.js165 function is_identifier_char(ch) { function
462 else if (is_identifier_char(ch)) name += next();
468 …if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in i…
Doutput.js258 if ((is_identifier_char(prev)
259 && (is_identifier_char(ch) || ch == "\\"))
/plugin/asciidocjs/node_modules/uglify-js/lib/ !
Dparse.js150 function is_identifier_char(ch) { function
479 else if (is_identifier_char(ch)) name += next();
484 …if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in i…
Doutput.js265 return is_identifier_char(prev) && (is_identifier_char(ch) || ch == "\\")