(sourceFile: ts.SourceFile)
| 13 | */ |
| 14 | export class Rule extends Lint.Rules.AbstractRule { |
| 15 | apply(sourceFile: ts.SourceFile) { |
| 16 | return this.applyWithWalker(new NoExposedTodoWalker(sourceFile, this.getOptions())); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | class NoExposedTodoWalker extends Lint.RuleWalker { |
nothing calls this directly
no test coverage detected