mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
91540d74b1
Summary: This change removes the concept of `StateTarget`, replacing its role with `ShadowNodeFamily`. When `StateTarget` was built, we didn't have a concept of `Family`, and when we added it we introduced a retain-cycle: ShadowNode -> Family -> StateTarget -> ShadowNode. This diff fixes that. This change does not change conceptually how the state behaves, it just adjusts internal machinery. Changelog: [Internal] Fabric-specific internal change. Reviewed By: sammy-SC Differential Revision: D19799013 fbshipit-source-id: c1360bfbf6b8ac34e2a856a40047eafeb50ed070
9 lines
214 B
C++
9 lines
214 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "StateUpdate.h"
|