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