-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move execution of ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() out of destructor #46993
Conversation
This pull request was exported from Phabricator. Differential Revision: D64190029 |
8a40818
to
939da9f
Compare
…iews() out of destructor (facebook#46993) Summary: Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native. We are moving this call into the contructor of the object which always happen on the js thread changelog: [internal] internal Reviewed By: rubennorte Differential Revision: D64190029
This pull request was exported from Phabricator. Differential Revision: D64190029 |
…iews() out of destructor (facebook#46993) Summary: Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native. We are moving this call into the contructor of the object which always happen on the js thread changelog: [internal] internal Reviewed By: rubennorte Differential Revision: D64190029
939da9f
to
0ce7706
Compare
This pull request was exported from Phabricator. Differential Revision: D64190029 |
…iews() out of destructor (facebook#46993) Summary: Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native. We are moving this call into the contructor of the object which always happen on the js thread changelog: [internal] internal Reviewed By: rubennorte Differential Revision: D64190029
0ce7706
to
955b9ca
Compare
This pull request was exported from Phabricator. Differential Revision: D64190029 |
…iews() out of destructor (facebook#46993) Summary: Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native. We are moving this call into the contructor of the object which always happen on the js thread changelog: [internal] internal Reviewed By: rubennorte Differential Revision: D64190029
955b9ca
to
3557848
Compare
This pull request was exported from Phabricator. Differential Revision: D64190029 |
…iews() out of destructor (facebook#46993) Summary: Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native. We are moving this call into the contructor of the object which always happen on the js thread changelog: [internal] internal Reviewed By: rubennorte Differential Revision: D64190029
3557848
to
c4a4c1d
Compare
This pull request was exported from Phabricator. Differential Revision: D64190029 |
This pull request has been merged in 3443127. |
Summary:
Calling ReactNativeFeatureFlags::enableDeletionOfUnmountedViews() from the destructor increases the chance of accessing ReactNativeFeatureFlags during the tear down of React Native.
We are moving this call into the contructor of the object which always happen on the js thread
changelog: [internal] internal
Reviewed By: rubennorte
Differential Revision: D64190029