(a, b)
| 4526 | } |
| 4527 | |
| 4528 | function sameVnode (a, b) { |
| 4529 | return ( |
| 4530 | a.key === b.key && |
| 4531 | a.tag === b.tag && |
| 4532 | a.isComment === b.isComment && |
| 4533 | isDef(a.data) === isDef(b.data) && |
| 4534 | sameInputType(a, b) |
| 4535 | ) |
| 4536 | } |
| 4537 | |
| 4538 | // Some browsers do not support dynamically changing type for <input> |
| 4539 | // so they need to be treated as different nodes |
no test coverage detected