()
| 32000 | return func(); |
| 32001 | } |
| 32002 | function nextToken() { |
| 32003 | // if the keyword had an escape |
| 32004 | if (ts.isKeyword(currentToken) && (scanner.hasUnicodeEscape() || scanner.hasExtendedUnicodeEscape())) { |
| 32005 | // issue a parse error for the escape |
| 32006 | parseErrorAt(scanner.getTokenPos(), scanner.getTextPos(), ts.Diagnostics.Keywords_cannot_contain_escape_characters); |
| 32007 | } |
| 32008 | return nextTokenWithoutCheck(); |
| 32009 | } |
| 32010 | function nextTokenJSDoc() { |
| 32011 | return currentToken = scanner.scanJsDocToken(); |
| 32012 | } |
no test coverage detected
searching dependent graphs…