]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: remove todos
authorEvan You <yyx990803@gmail.com>
Tue, 28 May 2019 12:14:04 +0000 (20:14 +0800)
committerEvan You <yyx990803@gmail.com>
Tue, 28 May 2019 12:14:04 +0000 (20:14 +0800)
packages/runtime-core/src/createRenderer.ts

index 3ec66d67eee5790a734e75064a093ec774277c0f..5067fd4dc64c7f74010f5f1d873b0b5fa393f0e2 100644 (file)
@@ -1,15 +1,3 @@
-// TODO:
-// - refs
-// - slots
-// - keep alive
-// - app context
-// - svg
-// - hydration
-// - error handling
-// - warning context
-// - parent chain
-// - reused nodes (warning)
-
 import {
   Text,
   Fragment,
@@ -19,16 +7,16 @@ import {
   VNode,
   VNodeChildren
 } from './vnode'
-import { isString, isArray, EMPTY_OBJ, EMPTY_ARR } from '@vue/shared'
-import { TEXT, CLASS, STYLE, PROPS, KEYED, UNKEYED } from './patchFlags'
-import { effect, stop } from '@vue/observer'
 import {
   ComponentInstance,
   renderComponentRoot,
   shouldUpdateComponent,
   createComponentInstance
 } from './component'
+import { isString, isArray, EMPTY_OBJ, EMPTY_ARR } from '@vue/shared'
+import { TEXT, CLASS, STYLE, PROPS, KEYED, UNKEYED } from './patchFlags'
 import { queueJob, queuePostFlushCb, flushPostFlushCbs } from './scheduler'
+import { effect, stop } from '@vue/observer'
 
 function isSameType(n1: VNode, n2: VNode): boolean {
   return n1.type === n2.type && n1.key === n2.key