(component: Component, context: any)
| 292 | visitLetDeclaration(decl: LetDeclaration, context: any) {} |
| 293 | |
| 294 | visitComponent(component: Component, context: any) { |
| 295 | this.visitChildren(context, (visit) => { |
| 296 | visit(component.attrs); |
| 297 | visit(component.comments); |
| 298 | visit(component.children); |
| 299 | }); |
| 300 | } |
| 301 | |
| 302 | visitDirective(directive: Directive, context: any) { |
| 303 | this.visitChildren(context, (visit) => { |
nothing calls this directly
no test coverage detected