(node: Node, vnode: VNode)
| 1023 | } |
| 1024 | |
| 1025 | function isNodeMismatchAllowed(node: Node, vnode: VNode): boolean { |
| 1026 | return ( |
| 1027 | isMismatchAllowed(node.parentElement, MismatchTypes.CHILDREN) || |
| 1028 | isMismatchAllowedByNode(node) || |
| 1029 | isMismatchAllowedByVNode(vnode) |
| 1030 | ) |
| 1031 | } |
| 1032 | |
| 1033 | function isMismatchAllowedByNode(node: Node): boolean { |
| 1034 | return ( |
no test coverage detected