(code, languageVersion)
| 10249 | } |
| 10250 | ts.isUnicodeIdentifierStart = isUnicodeIdentifierStart; |
| 10251 | function isUnicodeIdentifierPart(code, languageVersion) { |
| 10252 | return languageVersion >= 2 /* ScriptTarget.ES2015 */ ? |
| 10253 | lookupInUnicodeMap(code, unicodeESNextIdentifierPart) : |
| 10254 | languageVersion === 1 /* ScriptTarget.ES5 */ ? lookupInUnicodeMap(code, unicodeES5IdentifierPart) : |
| 10255 | lookupInUnicodeMap(code, unicodeES3IdentifierPart); |
| 10256 | } |
| 10257 | function makeReverseMap(source) { |
| 10258 | var result = []; |
| 10259 | source.forEach(function (value, name) { |
no test coverage detected
searching dependent graphs…