(node: InterpolationNode, context: CodegenContext)
| 761 | } |
| 762 | |
| 763 | function genInterpolation(node: InterpolationNode, context: CodegenContext) { |
| 764 | const { push, helper, pure } = context |
| 765 | if (pure) push(PURE_ANNOTATION) |
| 766 | push(`${helper(TO_DISPLAY_STRING)}(`) |
| 767 | genNode(node.content, context) |
| 768 | push(`)`) |
| 769 | } |
| 770 | |
| 771 | function genCompoundExpression( |
| 772 | node: CompoundExpressionNode, |