(message: string, public position: SourcePosition)
| 53 | |
| 54 | export class ParserError extends Error { |
| 55 | constructor(message: string, public position: SourcePosition) { |
| 56 | super(message); |
| 57 | this.name = "ParserError"; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | interface AttributeValidationContext { |
nothing calls this directly
no outgoing calls
no test coverage detected