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