()
| 667 | }, |
| 668 | |
| 669 | afterPropertyValue () { |
| 670 | switch (c) { |
| 671 | case ',': |
| 672 | case '}': |
| 673 | return newToken('punctuator', read()) |
| 674 | } |
| 675 | |
| 676 | throw invalidChar(read()) |
| 677 | }, |
| 678 | |
| 679 | beforeArrayValue () { |
| 680 | if (c === ']') { |
nothing calls this directly
no test coverage detected
searching dependent graphs…