(ast: Element, context: any)
| 259 | constructor() {} |
| 260 | |
| 261 | visitElement(ast: Element, context: any): any { |
| 262 | this.visitChildren(context, (visit) => { |
| 263 | visit(ast.attrs); |
| 264 | visit(ast.directives); |
| 265 | visit(ast.comments); |
| 266 | visit(ast.children); |
| 267 | }); |
| 268 | } |
| 269 | |
| 270 | visitAttribute(ast: Attribute, context: any): any {} |
| 271 | visitStartTagComment(ast: StartTagComment, context: any): any {} |
nothing calls this directly
no test coverage detected