(sourceFile: ts.SourceFile, program: ts.Program)
| 10 | /** Rule to prevent adding code that depends on using zones. */ |
| 11 | export class Rule extends Lint.Rules.TypedRule { |
| 12 | applyWithProgram(sourceFile: ts.SourceFile, program: ts.Program): Lint.RuleFailure[] { |
| 13 | return this.applyWithWalker( |
| 14 | new Walker(sourceFile, this.getOptions(), program.getTypeChecker()), |
| 15 | ); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | class Walker extends Lint.RuleWalker { |
nothing calls this directly
no test coverage detected