chore: remove unused variable (#11842)

This commit is contained in:
btea 2024-09-07 18:30:58 +08:00 committed by GitHub
parent b1430f250d
commit fe2ab1bbac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View File

@ -23,7 +23,6 @@ import {
import { import {
EMPTY_OBJ, EMPTY_OBJ,
NOOP, NOOP,
PatchFlagNames,
PatchFlags, PatchFlags,
camelize, camelize,
capitalize, capitalize,
@ -375,7 +374,6 @@ function createRootCodegen(root: RootNode, context: TransformContext) {
} else if (children.length > 1) { } else if (children.length > 1) {
// root has multiple nodes - return a fragment block. // root has multiple nodes - return a fragment block.
let patchFlag = PatchFlags.STABLE_FRAGMENT let patchFlag = PatchFlags.STABLE_FRAGMENT
let patchFlagText = PatchFlagNames[PatchFlags.STABLE_FRAGMENT]
// check if the fragment actually contains a single valid child with // check if the fragment actually contains a single valid child with
// the rest being comments // the rest being comments
if ( if (
@ -383,7 +381,6 @@ function createRootCodegen(root: RootNode, context: TransformContext) {
children.filter(c => c.type !== NodeTypes.COMMENT).length === 1 children.filter(c => c.type !== NodeTypes.COMMENT).length === 1
) { ) {
patchFlag |= PatchFlags.DEV_ROOT_FRAGMENT patchFlag |= PatchFlags.DEV_ROOT_FRAGMENT
patchFlagText += `, ${PatchFlagNames[PatchFlags.DEV_ROOT_FRAGMENT]}`
} }
root.codegenNode = createVNodeCall( root.codegenNode = createVNodeCall(
context, context,

View File

@ -32,7 +32,7 @@ import { processExpression } from './transformExpression'
import { validateBrowserExpression } from '../validateExpression' import { validateBrowserExpression } from '../validateExpression'
import { CREATE_COMMENT, FRAGMENT } from '../runtimeHelpers' import { CREATE_COMMENT, FRAGMENT } from '../runtimeHelpers'
import { findDir, findProp, getMemoedVNodeCall, injectProp } from '../utils' import { findDir, findProp, getMemoedVNodeCall, injectProp } from '../utils'
import { PatchFlagNames, PatchFlags } from '@vue/shared' import { PatchFlags } from '@vue/shared'
export const transformIf: NodeTransform = createStructuralDirectiveTransform( export const transformIf: NodeTransform = createStructuralDirectiveTransform(
/^(if|else|else-if)$/, /^(if|else|else-if)$/,
@ -264,7 +264,6 @@ function createChildrenCodegenNode(
return vnodeCall return vnodeCall
} else { } else {
let patchFlag = PatchFlags.STABLE_FRAGMENT let patchFlag = PatchFlags.STABLE_FRAGMENT
let patchFlagText = PatchFlagNames[PatchFlags.STABLE_FRAGMENT]
// check if the fragment actually contains a single valid child with // check if the fragment actually contains a single valid child with
// the rest being comments // the rest being comments
if ( if (
@ -273,7 +272,6 @@ function createChildrenCodegenNode(
children.filter(c => c.type !== NodeTypes.COMMENT).length === 1 children.filter(c => c.type !== NodeTypes.COMMENT).length === 1
) { ) {
patchFlag |= PatchFlags.DEV_ROOT_FRAGMENT patchFlag |= PatchFlags.DEV_ROOT_FRAGMENT
patchFlagText += `, ${PatchFlagNames[PatchFlags.DEV_ROOT_FRAGMENT]}`
} }
return createVNodeCall( return createVNodeCall(