| 22 | * Rule that doesn't allow undecorated class declarations using Angular features. |
| 23 | */ |
| 24 | export class Rule extends Lint.Rules.TypedRule { |
| 25 | applyWithProgram(sourceFile: ts.SourceFile, program: ts.Program): Lint.RuleFailure[] { |
| 26 | return this.applyWithWalker( |
| 27 | new Walker(sourceFile, this.getOptions(), program.getTypeChecker()), |
nothing calls this directly
no outgoing calls
no test coverage detected