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

Method appendIcuExpressions

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

Source from the content-addressed store, hash-verified

866 }
867
868 private appendIcuExpressions(node: Icu): void {
869 for (const variable of Object.values(node.vars)) {
870 this.opQueue.push(new TcbExpressionOp(this.tcb, this, variable.value));
871 }
872 for (const placeholder of Object.values(node.placeholders)) {
873 if (placeholder instanceof BoundText) {
874 this.opQueue.push(new TcbExpressionOp(this.tcb, this, placeholder.value));
875 }
876 }
877 }
878
879 private appendContentProjectionCheckOp(root: Element | Component): void {
880 const meta =

Callers 1

appendNodeMethod · 0.95

Calls 2

valuesMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected