(message, location)
| 2382 | } |
| 2383 | |
| 2384 | function error(message, location) { |
| 2385 | location = location !== undefined |
| 2386 | ? location |
| 2387 | : peg$computeLocation(peg$savedPos, peg$currPos); |
| 2388 | |
| 2389 | throw peg$buildSimpleError(message, location); |
| 2390 | } |
| 2391 | |
| 2392 | function peg$getUnicode(pos = peg$currPos) { |
| 2393 | const cp = input.codePointAt(pos); |
nothing calls this directly
no test coverage detected