(node: html.Node, context: any)
| 1881 | const accumulator: html.Node[] = []; |
| 1882 | const visitor = new (class implements html.Visitor { |
| 1883 | visit(node: html.Node, 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); |