(func)
| 31996 | return currentToken = scanner.scan(); |
| 31997 | } |
| 31998 | function nextTokenAnd(func) { |
| 31999 | nextToken(); |
| 32000 | return func(); |
| 32001 | } |
| 32002 | function nextToken() { |
| 32003 | // if the keyword had an escape |
| 32004 | if (ts.isKeyword(currentToken) && (scanner.hasUnicodeEscape() || scanner.hasExtendedUnicodeEscape())) { |
no test coverage detected