| 446 | } |
| 447 | |
| 448 | @Pipe({name: 'pipe'}) |
| 449 | class MyStandalonePipeA { |
| 450 | transform(value: string): string { |
| 451 | return `transformed ${value} (A)`; |
| 452 | } |
| 453 | } |
| 454 | @Pipe({name: 'pipe'}) |
| 455 | class MyStandalonePipeB { |
| 456 | transform(value: string): string { |
nothing calls this directly
no test coverage detected
searching dependent graphs…