MCPcopy Create free account
hub / github.com/angular/angular / domTemplate

Function domTemplate

packages/compiler/src/template/pipeline/src/instruction.ts:806–827  ·  view source on GitHub ↗
(
  slot: number,
  templateFnRef: o.Expression,
  decls: number,
  vars: number,
  tag: string | null,
  constIndex: number | null,
  localRefs: number | null,
  sourceSpan: ParseSourceSpan,
)

Source from the content-addressed store, hash-verified

804}
805
806export function domTemplate(
807 slot: number,
808 templateFnRef: o.Expression,
809 decls: number,
810 vars: number,
811 tag: string | null,
812 constIndex: number | null,
813 localRefs: number | null,
814 sourceSpan: ParseSourceSpan,
815): ir.CreateOp {
816 return templateBase(
817 Identifiers.domTemplate,
818 slot,
819 templateFnRef,
820 decls,
821 vars,
822 tag,
823 constIndex,
824 localRefs,
825 sourceSpan,
826 );
827}
828
829const PIPE_BINDINGS: o.ExternalReference[] = [
830 Identifiers.pipeBind1,

Callers

nothing calls this directly

Calls 1

templateBaseFunction · 0.85

Tested by

no test coverage detected