File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export {
11
11
__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE ,
12
12
__COMPILER_RUNTIME ,
13
13
act ,
14
+ captureOwnerStack ,
14
15
Children ,
15
16
Component ,
16
17
Fragment ,
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import {lazy} from './ReactLazy';
28
28
import { memo } from './ReactMemo' ;
29
29
import { cache } from './ReactCacheServer' ;
30
30
import version from 'shared/ReactVersion' ;
31
+ import { captureOwnerStack } from './ReactOwnerStack' ;
31
32
32
33
const Children = {
33
34
map,
@@ -57,4 +58,5 @@ export {
57
58
useDebugValue ,
58
59
useMemo ,
59
60
version ,
61
+ captureOwnerStack , // DEV-only
60
62
} ;
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ export const passChildrenWhenCloningPersistedNodes = false;
132
132
*/
133
133
export const enablePersistedModeClonedFlag = false ;
134
134
135
- export const enableOwnerStacks = __EXPERIMENTAL__ ;
135
+ export const enableOwnerStacks = true ;
136
136
137
137
export const enableShallowPropDiffing = false ;
138
138
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const enableReactTestRendererWarning = true;
87
87
export const disableDefaultPropsExceptForClasses = true ;
88
88
89
89
export const enableObjectFiber = false ;
90
- export const enableOwnerStacks = false ;
90
+ export const enableOwnerStacks = true ;
91
91
92
92
// Flow magic to verify the exports of this file match the original version.
93
93
( ( ( ( null : any ) : ExportsType ) : FeatureFlagsType ) : ExportsType ) ;
You can’t perform that action at this time.
0 commit comments