Home
last modified time | relevance | path

Searched refs:NEWLINE_CHARS (Results 1 – 2 of 2) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dparse.js112 var NEWLINE_CHARS = makePredicate(characters("\n\r\u2028\u2029")); variable
238 if (NEWLINE_CHARS(ch)) {
265 if (NEWLINE_CHARS(ch))
421 else if (NEWLINE_CHARS(ch)) parse_error("Unterminated string constant");
482 while ((ch = next(true))) if (NEWLINE_CHARS(ch)) {
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dparse.js118 var NEWLINE_CHARS = "\n\r\u2028\u2029"; variable
126 var WHITESPACE_CHARS = NEWLINE_CHARS + " \u00a0\t\f\u000b\u200b\u2000\u2001\u2002\u2003\u2004\u2005…
129 NEWLINE_CHARS = makePredicate(characters(NEWLINE_CHARS));
279 if (NEWLINE_CHARS[ch]) {
305 if (NEWLINE_CHARS[text[i]]) return i;
438 else if (NEWLINE_CHARS[ch]) parse_error("Unterminated string constant");
498 while ((ch = next(true))) if (NEWLINE_CHARS[ch]) {