(sourceFile: ts.SourceFile, program: ts.Program)
| 27 | */ |
| 28 | export class Rule extends TypedRule { |
| 29 | override applyWithProgram(sourceFile: ts.SourceFile, program: ts.Program): RuleFailure[] { |
| 30 | return this.applyWithFunction(sourceFile, (ctx) => visitNode(sourceFile, ctx, program)); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /** |
nothing calls this directly
no test coverage detected