(rf: number, ctx: any)
| 342 | ); |
| 343 | |
| 344 | const itemTemplate = (rf: number, ctx: any) => { |
| 345 | if (rf & 1) { |
| 346 | ɵɵelementStart(0, 'span'); |
| 347 | ɵɵtext(1); |
| 348 | ɵɵelementEnd(); |
| 349 | } |
| 350 | if (rf & 2) { |
| 351 | const item = ctx[0]; |
| 352 | const index = ctx[1]; |
| 353 | ɵɵadvance(1); |
| 354 | ɵɵtextInterpolate2('#', index, ': ', item); |
| 355 | } |
| 356 | }; |
| 357 | |
| 358 | const fixture = new ViewFixture({ |
| 359 | decls: 2, |
nothing calls this directly
no test coverage detected