Method
constructor
(missingAliases: Array<string>)
Source from the content-addressed store, hash-verified
| 766 | */ |
| 767 | export class MissingAliasInputsError extends QueryCompilationError { |
| 768 | constructor(missingAliases: Array<string>) { |
| 769 | super( |
| 770 | `Internal error: compiler returned aliases without inputs: ${missingAliases.join(`, `)}. ` + |
| 771 | `This indicates a bug in query compilation. Please report this issue.`, |
| 772 | ) |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | /** |
Callers
nothing calls this directly
Tested by
no test coverage detected