chore: update

This commit is contained in:
daiwei 2025-04-21 08:59:04 +08:00
parent 684e47c848
commit 619420c3ec
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export function genOperationWithInsertionState(
): CodeFragment[] { ): CodeFragment[] {
const [frag, push] = buildCodeFragment() const [frag, push] = buildCodeFragment()
if (isBlockOperation(oper) && oper.parent) { if (isBlockOperation(oper) && oper.parent) {
push(...genInsertionstate(oper, context)) push(...genInsertionState(oper, context))
} }
push(...genOperation(oper, context)) push(...genOperation(oper, context))
return frag return frag
@ -152,7 +152,7 @@ export function genEffect(
return frag return frag
} }
function genInsertionstate( function genInsertionState(
operation: InsertionStateTypes, operation: InsertionStateTypes,
context: CodegenContext, context: CodegenContext,
): CodeFragment[] { ): CodeFragment[] {