(el: html.Element, context: any)
| 250 | } |
| 251 | |
| 252 | visitElement(el: html.Element, context: any): html.Element | null { |
| 253 | return this._visitElementLike(el, context); |
| 254 | } |
| 255 | |
| 256 | visitAttribute(attribute: html.Attribute, context: any): any { |
| 257 | throw new Error('unreachable code'); |
nothing calls this directly
no test coverage detected