(component: html.Component, context: any)
| 266 | visitLetDeclaration(decl: html.LetDeclaration, context: any) {} |
| 267 | |
| 268 | visitComponent(component: html.Component, context: any): html.Component | null { |
| 269 | return this._visitElementLike(component, context); |
| 270 | } |
| 271 | |
| 272 | visitDirective(directive: html.Directive, context: any) { |
| 273 | throw new Error('unreachable code'); |
nothing calls this directly
no test coverage detected