(vnode)
| 6939 | } |
| 6940 | |
| 6941 | function hasParentTransition (vnode) { |
| 6942 | while ((vnode = vnode.parent)) { |
| 6943 | if (vnode.data.transition) { |
| 6944 | return true |
| 6945 | } |
| 6946 | } |
| 6947 | } |
| 6948 | |
| 6949 | function isSameChild (child, oldChild) { |
| 6950 | return oldChild.key === child.key && oldChild.tag === child.tag |