(element: html.Element, context: any)
| 1884 | accumulator.push(node); |
| 1885 | } |
| 1886 | visitElement(element: html.Element, context: any): any { |
| 1887 | html.visitAll(this, element.attrs); |
| 1888 | html.visitAll(this, element.directives); |
| 1889 | html.visitAll(this, element.children); |
| 1890 | } |
| 1891 | visitAttribute(attribute: html.Attribute, context: any): any {} |
| 1892 | visitText(text: html.Text, context: any): any {} |
| 1893 | visitComment(comment: html.Comment, context: any): any {} |