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