| 6 | import { Query, QueryNodePath, SourceFile } from "./types" |
| 7 | |
| 8 | interface CodeError extends Error { |
| 9 | location: SourceLocation |
| 10 | sourceFile: SourceFile |
| 11 | } |
| 12 | |
| 13 | interface ValidationError extends Error { |
| 14 | location: SourceLocation |
nothing calls this directly
no outgoing calls
no test coverage detected