Home
last modified time | relevance | path

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

/third_party/node/deps/cjs-module-lexer/
Dlexer.js1064 const nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars … constant
1114 if (code <= 0xffff) return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code))
/third_party/node/deps/acorn/acorn/dist/
Dacorn.js40 …var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars +…
90 … if (code <= 0xffff) { return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code)) }
Dacorn.mjs34 var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + … variable
84 if (code <= 0xffff) { return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code)) }
/third_party/node/tools/
Dlint-md.mjs12841 const nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars … constant
12881 return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code));