(type: string)
| 536 | |
| 537 | export class UnknownExpressionTypeError extends QueryCompilationError { |
| 538 | constructor(type: string) { |
| 539 | super(`Unknown expression type: ${type}`) |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | export class EmptyReferencePathError extends QueryCompilationError { |
nothing calls this directly
no outgoing calls
no test coverage detected