(type, props, children, patchFlag, dynamicProps)
| 6040 | ); |
| 6041 | } |
| 6042 | function createBlock(type, props, children, patchFlag, dynamicProps) { |
| 6043 | return setupBlock( |
| 6044 | createVNode( |
| 6045 | type, |
| 6046 | props, |
| 6047 | children, |
| 6048 | patchFlag, |
| 6049 | dynamicProps, |
| 6050 | true |
| 6051 | ) |
| 6052 | ); |
| 6053 | } |
| 6054 | function isVNode(value) { |
| 6055 | return value ? value.__v_isVNode === true : false; |
| 6056 | } |
no test coverage detected