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

Function property

packages/compiler/src/template/pipeline/src/instruction.ts:616–623  ·  view source on GitHub ↗
(
  name: string,
  expression: o.Expression | ir.Interpolation,
  sanitizer: o.Expression | null,
  sourceSpan: ParseSourceSpan,
)

Source from the content-addressed store, hash-verified

614}
615
616export function property(
617 name: string,
618 expression: o.Expression | ir.Interpolation,
619 sanitizer: o.Expression | null,
620 sourceSpan: ParseSourceSpan,
621): ir.UpdateOp {
622 return propertyBase(Identifiers.property, name, expression, sanitizer, sourceSpan);
623}
624
625export function control(sourceSpan: ParseSourceSpan | null): ir.UpdateOp {
626 return call(Identifiers.control, [], sourceSpan);

Callers 2

ng_module_spec.tsFile · 0.50
getOrCallFunction · 0.50

Calls 1

propertyBaseFunction · 0.85

Tested by

no test coverage detected