(context, tag, props, children)
| 10 | } |
| 11 | |
| 12 | export const createVNodeCall = (context, tag, props, children) => { |
| 13 | context.helper(CREATE_ELEMENT_VNODE); |
| 14 | |
| 15 | return { |
| 16 | type: NodeTypes.ELEMENT, |
| 17 | tag: tag, |
| 18 | props: props, |
| 19 | children: children |
| 20 | }; |
| 21 | }; |
no test coverage detected