()
| 133 | } |
| 134 | |
| 135 | function curToken(): ParseTokenOutput { |
| 136 | return { kind, start, end, value: JSON.parse(string.slice(start, end)) }; |
| 137 | } |
| 138 | |
| 139 | function expect(str: string) { |
| 140 | if (kind === str) { |
no test coverage detected
searching dependent graphs…