()
| 609 | }, |
| 610 | |
| 611 | start () { |
| 612 | switch (c) { |
| 613 | case '{': |
| 614 | case '[': |
| 615 | return newToken('punctuator', read()) |
| 616 | |
| 617 | // This code is unreachable since the default lexState handles eof. |
| 618 | // case undefined: |
| 619 | // return newToken('eof') |
| 620 | } |
| 621 | |
| 622 | lexState = 'value' |
| 623 | }, |
| 624 | |
| 625 | beforePropertyName () { |
| 626 | switch (c) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…