()
| 498 | } |
| 499 | |
| 500 | function mountReactDevTools() { |
| 501 | reactPollingInstance = null; |
| 502 | |
| 503 | registerEventsLogger(); |
| 504 | |
| 505 | createBridgeAndStore(); |
| 506 | |
| 507 | createComponentsPanel(); |
| 508 | createProfilerPanel(); |
| 509 | createSourcesEditorPanel(); |
| 510 | // Suspense Tab is created via the hook |
| 511 | // TODO(enableSuspenseTab): Create eagerly once Suspense tab is stable |
| 512 | } |
| 513 | |
| 514 | let reactPollingInstance = null; |
| 515 | function clearReactPollingInstance() { |
nothing calls this directly
no test coverage detected