( index: number, templateFn: ComponentTemplate<any> | null, decls: number, vars: number, tagName?: string | null, attrsIndex?: number | null, localRefsIndex?: number | null, localRefExtractor?: LocalRefExtractor, )
| 308 | * @codeGenApi |
| 309 | */ |
| 310 | export function ɵɵdomTemplate( |
| 311 | index: number, |
| 312 | templateFn: ComponentTemplate<any> | null, |
| 313 | decls: number, |
| 314 | vars: number, |
| 315 | tagName?: string | null, |
| 316 | attrsIndex?: number | null, |
| 317 | localRefsIndex?: number | null, |
| 318 | localRefExtractor?: LocalRefExtractor, |
| 319 | ): typeof ɵɵdomTemplate { |
| 320 | const lView = getLView(); |
| 321 | const tView = getTView(); |
| 322 | const attrs = getConstant<TAttributes>(tView.consts, attrsIndex); |
| 323 | declareNoDirectiveHostTemplate( |
| 324 | lView, |
| 325 | tView, |
| 326 | index, |
| 327 | templateFn, |
| 328 | decls, |
| 329 | vars, |
| 330 | tagName, |
| 331 | attrs, |
| 332 | undefined, |
| 333 | localRefsIndex, |
| 334 | localRefExtractor, |
| 335 | ); |
| 336 | return ɵɵdomTemplate; |
| 337 | } |
| 338 | |
| 339 | let _locateOrCreateContainerAnchor = createContainerAnchorImpl; |
| 340 |
nothing calls this directly
no test coverage detected
searching dependent graphs…