| 269 | } |
| 270 | |
| 271 | @Pipe({ |
| 272 | name: 'impurePipe', |
| 273 | pure: false, |
| 274 | standalone: false, |
| 275 | }) |
| 276 | class ImpurePipe implements PipeTransform { |
| 277 | constructor() {} |
| 278 | transform(value: any): any { |
| 279 | return this; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | @Pipe({ |
| 284 | name: 'pipeNeedsChangeDetectorRef', |
nothing calls this directly
no test coverage detected
searching dependent graphs…