()
| 4053 | } |
| 4054 | |
| 4055 | function peek() { |
| 4056 | var pos, line, start; |
| 4057 | |
| 4058 | pos = index; |
| 4059 | line = lineNumber; |
| 4060 | start = lineStart; |
| 4061 | lookahead = advance(); |
| 4062 | index = pos; |
| 4063 | lineNumber = line; |
| 4064 | lineStart = start; |
| 4065 | } |
| 4066 | |
| 4067 | function lookahead2() { |
| 4068 | var adv, pos, line, start, result; |
no test coverage detected