()
| 317 | if (!bootDone && !initialMounted && !initialMounting && !g.__NS_HMR_RESCUE_SCHEDULED__) { |
| 318 | // simple snapshot helpers |
| 319 | const getTopmost = () => { |
| 320 | try { |
| 321 | const F = getCore('Frame') || g.Frame; |
| 322 | return F?.topmost?.() || null; |
| 323 | } catch { |
| 324 | return null; |
| 325 | } |
| 326 | }; |
| 327 | const isPlaceholderView = (v: any) => { |
| 328 | try { |
| 329 | if (!v) return false; |
no test coverage detected