()
| 433 | * Note: Only 'all' mode uses caching; filtered modes don't cache to avoid stale filter results |
| 434 | */ |
| 435 | export function clearReactDetectionCache(): void { |
| 436 | reactDetectionCache = null; |
| 437 | componentCacheAllRef.map = new WeakMap<HTMLElement, ReactComponentInfo>(); |
| 438 | } |
| 439 | |
| 440 | function getReactFiberKey(element: HTMLElement): string | null { |
| 441 | const keys = Object.keys(element); |
no outgoing calls
no test coverage detected
searching dependent graphs…