(ast: Block)
| 152 | } |
| 153 | |
| 154 | override visitBlock(ast: Block): void { |
| 155 | for (const blockParam of ast.parameters) { |
| 156 | if (this.hasPipes(blockParam.expression)) { |
| 157 | this.count++; |
| 158 | } |
| 159 | } |
| 160 | super.visitBlock(ast, null); |
| 161 | } |
| 162 | |
| 163 | override visitText(ast: Text) { |
| 164 | if (this.hasPipes(ast.value)) { |
nothing calls this directly
no test coverage detected