| 13 | * an explicit pass-through constructor to make DI work. |
| 14 | */ |
| 15 | export class Rule extends Lint.Rules.TypedRule { |
| 16 | applyWithProgram(sourceFile: ts.SourceFile, program: ts.Program): Lint.RuleFailure[] { |
| 17 | return this.applyWithWalker( |
| 18 | new Walker(sourceFile, this.getOptions(), program.getTypeChecker()), |
nothing calls this directly
no outgoing calls
no test coverage detected