(el: Element)
| 141 | count = 0; |
| 142 | |
| 143 | override visitElement(el: Element): void { |
| 144 | if (el.attrs.length > 0) { |
| 145 | for (const attr of el.attrs) { |
| 146 | if (this.hasDirectives(attr.name) || this.hasPipes(attr.value)) { |
| 147 | this.count++; |
| 148 | } |
| 149 | } |
| 150 | } |
| 151 | super.visitElement(el, null); |
| 152 | } |
| 153 | |
| 154 | override visitBlock(ast: Block): void { |
| 155 | for (const blockParam of ast.parameters) { |
nothing calls this directly
no test coverage detected