(node: Icu)
| 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 = |
no test coverage detected