(detail: string, position = this.pos)
| 414 | } |
| 415 | |
| 416 | private fail(detail: string, position = this.pos): never { |
| 417 | throw new ConstraintSyntaxError(this.source, detail, position); |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | export function parse(source: string): ExprNode { |
no outgoing calls