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

Method appendIcuExpressions

packages/compiler/src/typecheck/ops/scope.ts:853–862  ·  view source on GitHub ↗
(node: Icu)

Source from the content-addressed store, hash-verified

851 }
852
853 private appendIcuExpressions(node: Icu): void {
854 for (const variable of Object.values(node.vars)) {
855 this.opQueue.push(new TcbExpressionOp(this.tcb, this, variable.value));
856 }
857 for (const placeholder of Object.values(node.placeholders)) {
858 if (placeholder instanceof BoundText) {
859 this.opQueue.push(new TcbExpressionOp(this.tcb, this, placeholder.value));
860 }
861 }
862 }
863
864 private appendContentProjectionCheckOp(root: Element | Component): void {
865 const meta =

Callers 1

appendNodeMethod · 0.95

Calls 2

valuesMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected