()
| 143995 | return scanPunctuator(); |
| 143996 | } |
| 143997 | function lex() { |
| 143998 | const token = lookahead; |
| 143999 | index = token.end; |
| 144000 | lookahead = advance(); |
| 144001 | index = token.end; |
| 144002 | return token; |
| 144003 | } |
| 144004 | function peek() { |
| 144005 | const pos = index; |
| 144006 | lookahead = advance(); |
no test coverage detected