( ssr: boolean, isComponent: boolean, )
| 862 | } |
| 863 | |
| 864 | export function getVNodeBlockHelper( |
| 865 | ssr: boolean, |
| 866 | isComponent: boolean, |
| 867 | ): typeof CREATE_BLOCK | typeof CREATE_ELEMENT_BLOCK { |
| 868 | return ssr || isComponent ? CREATE_BLOCK : CREATE_ELEMENT_BLOCK |
| 869 | } |
| 870 | |
| 871 | export function convertToBlock( |
| 872 | node: VNodeCall, |
no outgoing calls
no test coverage detected