Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 19, 2024
1 parent c414bb2 commit b1c8022
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/compiler-vapor/src/generators/operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ import { NOOP, extend } from '@vue/shared'
import { genExpression } from './expression'
import { walk } from 'estree-walker'
import type { Node } from '@babel/types'
import {
type ParserOptions,
parseExpression,
} from '@babel/parser'
import { type ParserOptions, parseExpression } from '@babel/parser'

export function genOperations(
opers: OperationNode[],
Expand Down Expand Up @@ -99,7 +96,10 @@ export function genEffects(
} = context
const [frag, push, unshift] = buildCodeFragment()
let operationsCount = 0
const { ids, frag: declarationFrags } = processExpressions(context, expressions)
const { ids, frag: declarationFrags } = processExpressions(
context,
expressions,
)
push(...declarationFrags)
for (let i = 0; i < effects.length; i++) {
const effect = effects[i]
Expand Down

0 comments on commit b1c8022

Please sign in to comment.