30 ElementTypeClass,
31 ElementTypeContext,
32▶ ElementTypeFunction,
33 ElementTypeForwardRef,
34 ElementTypeHostComponent,
· · ·
177 Plugins,
178} from 'react-devtools-shared/src/frontend/types';
179▶import type {ReactFunctionLocation} from 'shared/ReactTypes';
180import type {
181 FiberInstance,
· · ·
194import {formatOwnerStack} from '../shared/DevToolsOwnerStack';
195
196▶function createFiberInstance(fiber: Fiber): FiberInstance {
197 return {
198 kind: FIBER_INSTANCE,
· · ·
211
212// This is used to represent a filtered Fiber but still lets us find its host instance.
213▶function createFilteredFiberInstance(fiber: Fiber): FilteredFiberInstance {
214 return {
215 kind: FILTERED_FIBER_INSTANCE,
· · ·
227}
228
229▶function createVirtualInstance(
230 debugEntry: ReactComponentInfo,
231): VirtualInstance {
+ 351 more matches in this file