| 376 | // The generated code corresponds to the following decorator: |
| 377 | // @Pipe({name: 'sayHello', pure: true}) |
| 378 | class SayHelloPipe extends ParentPipe implements PipeTransform { |
| 379 | transform() { |
| 380 | return this.sayHelloService.getHello(); |
| 381 | } |
| 382 | |
| 383 | static override ɵfac = (t?: any) => ɵɵgetInheritedFactory(t || SayHelloPipe)(SayHelloPipe); |
| 384 | static ɵpipe = ɵɵdefinePipe({ |
| 385 | name: 'sayHello', |
| 386 | type: SayHelloPipe, |
| 387 | pure: true, |
| 388 | }); |
| 389 | } |
| 390 | |
| 391 | @Component({ |
| 392 | selector: 'app', |
nothing calls this directly
no test coverage detected
searching dependent graphs…