Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderers/shared/fiber/ReactFiber.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ if (__DEV__) {

// A Fiber is work on a Component that needs to be done or was done. There can
// be more than one per component.
export type Fiber = {
export type Fiber = {|
// __DEV__ only
_debugID?: DebugID,
_debugSource?: Source | null,
Expand Down Expand Up @@ -176,7 +176,7 @@ export type Fiber = {
// Conceptual aliases
// workInProgress : Fiber -> alternate The alternate used for reuse happens
// to be the same as work in progress.
};
|};

if (__DEV__) {
var debugCounter = 1;
Expand Down