MCPcopy Index your code
hub / github.com/angular/angular / element

Function element

packages/compiler/src/template/pipeline/src/instruction.ts:18–33  ·  view source on GitHub ↗
(
  slot: number,
  tag: string,
  constIndex: number | null,
  localRefIndex: number | null,
  sourceSpan: ParseSourceSpan,
)

Source from the content-addressed store, hash-verified

16// depending on the exact arguments.
17
18export function element(
19 slot: number,
20 tag: string,
21 constIndex: number | null,
22 localRefIndex: number | null,
23 sourceSpan: ParseSourceSpan,
24): ir.CreateOp {
25 return elementOrContainerBase(
26 Identifiers.element,
27 slot,
28 tag,
29 constIndex,
30 localRefIndex,
31 sourceSpan,
32 );
33}
34
35export function elementStart(
36 slot: number,

Calls 1

elementOrContainerBaseFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…