(element: html.Element, context: any)
| 1898 | accumulator.push(node); |
| 1899 | } |
| 1900 | visitElement(element: html.Element, context: any): any { |
| 1901 | html.visitAll(this, element.attrs); |
| 1902 | html.visitAll(this, element.directives); |
| 1903 | html.visitAll(this, element.children); |
| 1904 | } |
| 1905 | visitAttribute(attribute: html.Attribute, context: any): any {} |
| 1906 | visitText(text: html.Text, context: any): any {} |
| 1907 | visitComment(comment: html.Comment, context: any): any {} |