MCPcopy Index your code
hub / github.com/angular/angular / ɵɵdomTemplate

Function ɵɵdomTemplate

packages/core/src/render3/instructions/template.ts:310–337  ·  view source on GitHub ↗
(
  index: number,
  templateFn: ComponentTemplate<any> | null,
  decls: number,
  vars: number,
  tagName?: string | null,
  attrsIndex?: number | null,
  localRefsIndex?: number | null,
  localRefExtractor?: LocalRefExtractor,
)

Source from the content-addressed store, hash-verified

308 * @codeGenApi
309 */
310export 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
339let _locateOrCreateContainerAnchor = createContainerAnchorImpl;
340

Callers

nothing calls this directly

Calls 4

getLViewFunction · 0.90
getTViewFunction · 0.90
getConstantFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…