(rf: number, ctx: any)
| 305 | ); |
| 306 | |
| 307 | const itemTemplate = (rf: number, ctx: any) => { |
| 308 | if (rf & 1) { |
| 309 | ɵɵelementStart(0, 'span'); |
| 310 | ɵɵtext(1); |
| 311 | ɵɵelementEnd(); |
| 312 | } |
| 313 | if (rf & 2) { |
| 314 | const item = ctx[0]; |
| 315 | const index = ctx[1]; |
| 316 | ɵɵadvance(1); |
| 317 | ɵɵtextInterpolate2('#', index, ': ', item); |
| 318 | } |
| 319 | }; |
| 320 | |
| 321 | const fixture = new ViewFixture({ |
| 322 | decls: 2, |
nothing calls this directly
no test coverage detected