MCPcopy
hub / github.com/vuejs/core / createCompoundExpression

Function createCompoundExpression

packages/compiler-core/src/ast.ts:713–722  ·  view source on GitHub ↗
(
  children: CompoundExpressionNode['children'],
  loc: SourceLocation = locStub,
)

Source from the content-addressed store, hash-verified

711}
712
713export 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
724type InferCodegenNodeType<T> = T extends typeof RENDER_SLOT
725 ? RenderSlotCall

Callers 11

transformClickFunction · 0.90
transformOnFunction · 0.90
transformSrcsetFunction · 0.90
transformOnFunction · 0.90
transformTextFunction · 0.90
vFor.tsFile · 0.90
processExpressionFunction · 0.90
transformModelFunction · 0.90
codegen.spec.tsFile · 0.90
ssrCodegenTransformFunction · 0.85
ssrTransformElementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected