( children: CompoundExpressionNode['children'], loc: SourceLocation = locStub, )
| 711 | } |
| 712 | |
| 713 | export function createCompoundExpression( |
| 714 | children: CompoundExpressionNode['children'], |
| 715 | loc: SourceLocation = locStub, |
| 716 | ): CompoundExpressionNode { |
| 717 | return { |
| 718 | type: NodeTypes.COMPOUND_EXPRESSION, |
| 719 | loc, |
| 720 | children, |
| 721 | } |
| 722 | } |
| 723 | |
| 724 | type InferCodegenNodeType<T> = T extends typeof RENDER_SLOT |
| 725 | ? RenderSlotCall |
no outgoing calls
no test coverage detected