chore: shorten option name

This commit is contained in:
Evan You
2019-10-04 09:03:00 -04:00
parent caccf92721
commit b61d9652dd
3 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ import { TransformContext } from '../transform'
import { CREATE_VNODE } from '../runtimeConstants'
import { PropsExpression } from './transformElement'
export function hoistStaticTrees(root: RootNode, context: TransformContext) {
export function hoistStatic(root: RootNode, context: TransformContext) {
walk(root.children, context, new Set<TemplateChildNode>())
}