| 5 | * Rule that enforces that property setters are declared after getters. |
| 6 | */ |
| 7 | export class Rule extends Lint.Rules.AbstractRule { |
| 8 | apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { |
| 9 | return this.applyWithWalker(new Walker(sourceFile, this.getOptions())); |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected