(vnode)
| 6489 | } |
| 6490 | |
| 6491 | function hasParentTransition (vnode) { |
| 6492 | while ((vnode = vnode.parent)) { |
| 6493 | if (vnode.data.transition) { |
| 6494 | return true |
| 6495 | } |
| 6496 | } |
| 6497 | } |
| 6498 | |
| 6499 | function isSameChild (child, oldChild) { |
| 6500 | return oldChild.key === child.key && oldChild.tag === child.tag |