(
{ type, props }: VNode,
currentNamespace: ElementNamespace,
)
| 2472 | } |
| 2473 | |
| 2474 | function resolveChildrenNamespace( |
| 2475 | { type, props }: VNode, |
| 2476 | currentNamespace: ElementNamespace, |
| 2477 | ): ElementNamespace { |
| 2478 | return (currentNamespace === 'svg' && type === 'foreignObject') || |
| 2479 | (currentNamespace === 'mathml' && |
| 2480 | type === 'annotation-xml' && |
| 2481 | props && |
| 2482 | props.encoding && |
| 2483 | props.encoding.includes('html')) |
| 2484 | ? undefined |
| 2485 | : currentNamespace |
| 2486 | } |
| 2487 | |
| 2488 | function toggleRecurse( |
| 2489 | { effect, job }: ComponentInternalInstance, |
no outgoing calls
no test coverage detected