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

Function property

packages/compiler/src/template/pipeline/src/instruction.ts:593–600  ·  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

591}
592
593export function property(
594 name: string,
595 expression: o.Expression | ir.Interpolation,
596 sanitizer: o.Expression | null,
597 sourceSpan: ParseSourceSpan,
598): ir.UpdateOp {
599 return propertyBase(Identifiers.property, name, expression, sanitizer, sourceSpan);
600}
601
602export function control(sourceSpan: ParseSourceSpan | null): ir.UpdateOp {
603 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…