()
| 685 | }, |
| 686 | |
| 687 | afterArrayValue () { |
| 688 | switch (c) { |
| 689 | case ',': |
| 690 | case ']': |
| 691 | return newToken('punctuator', read()) |
| 692 | } |
| 693 | |
| 694 | throw invalidChar(read()) |
| 695 | }, |
| 696 | |
| 697 | end () { |
| 698 | // This code is unreachable since it's handled by the default lexState. |
nothing calls this directly
no test coverage detected
searching dependent graphs…