( node: CompoundExpressionNode, context: CodegenContext, )
| 769 | } |
| 770 | |
| 771 | function genCompoundExpression( |
| 772 | node: CompoundExpressionNode, |
| 773 | context: CodegenContext, |
| 774 | ) { |
| 775 | for (let i = 0; i < node.children!.length; i++) { |
| 776 | const child = node.children![i] |
| 777 | if (isString(child)) { |
| 778 | context.push(child, NewlineType.Unknown) |
| 779 | } else { |
| 780 | genNode(child, context) |
| 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | function genExpressionAsPropertyKey( |
| 786 | node: ExpressionNode, |
no test coverage detected