| 26 | * More details can be found here: https://github.com/microsoft/TypeScript/issues/44457. |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected