| 5 | * AST validator contract |
| 6 | */ |
| 7 | export interface AstValidator<T extends AstNode> { |
| 8 | /** |
| 9 | * Validates an AST node |
| 10 | */ |
| 11 | validate(node: T, accept: ValidationAcceptor): MaybePromise<void>; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Checks if the given declarations have duplicated names |
no outgoing calls
no test coverage detected