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

Function call

packages/compiler/src/template/pipeline/src/instruction.ts:979–986  ·  view source on GitHub ↗
(
  instruction: o.ExternalReference,
  args: o.Expression[],
  sourceSpan: ParseSourceSpan | null,
)

Source from the content-addressed store, hash-verified

977}
978
979function call<OpT extends ir.CreateOp | ir.UpdateOp>(
980 instruction: o.ExternalReference,
981 args: o.Expression[],
982 sourceSpan: ParseSourceSpan | null,
983): OpT {
984 const expr = o.importExpr(instruction).callFn(args, sourceSpan);
985 return ir.createStatementOp(new o.ExpressionStatement(expr, sourceSpan)) as OpT;
986}
987
988export function conditional(
989 condition: o.Expression,

Callers 15

elementOrContainerBaseFunction · 0.85
templateBaseFunction · 0.85
propertyBaseFunction · 0.85
elementEndFunction · 0.85
elementContainerEndFunction · 0.85
disableBindingsFunction · 0.85
enableBindingsFunction · 0.85
listenerFunction · 0.85
twoWayListenerFunction · 0.85
pipeFunction · 0.85
namespaceHTMLFunction · 0.85
namespaceSVGFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…