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