()
| 1385 | } |
| 1386 | |
| 1387 | function peek() { |
| 1388 | var pos, line, start; |
| 1389 | |
| 1390 | pos = index; |
| 1391 | line = lineNumber; |
| 1392 | start = lineStart; |
| 1393 | lookahead = (typeof extra.tokens !== 'undefined') ? collectToken() : advance(); |
| 1394 | index = pos; |
| 1395 | lineNumber = line; |
| 1396 | lineStart = start; |
| 1397 | } |
| 1398 | |
| 1399 | function Position(line, column) { |
| 1400 | this.line = line; |
no test coverage detected