mirror of
https://github.com/status-im/react-native.git
synced 2025-02-24 07:08:27 +00:00
Summary: We are moving to more stable APIs removing all mentiones of the effort name from the codebase. Reviewed By: mdvacca Differential Revision: D12912894 fbshipit-source-id: 4a0c6b9e7454b8b14e62d419e9e9311dc0c56e7a
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/core/LocalData.h>
|
|
#include <react/core/Props.h>
|
|
#include <react/core/ReactPrimitives.h>
|
|
#include <react/core/ShadowNode.h>
|
|
#include <react/events/EventEmitter.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* An object which supposed to be used as a parameter specifying a shape
|
|
* of created or cloned ShadowNode.
|
|
* Note: Most of the fields are `const &` references (essentially just raw
|
|
* pointers) which means that the Fragment does not copy/store them or
|
|
* retain ownership of them.
|
|
*/
|
|
struct ShadowNodeFragment {
|
|
Tag tag = 0;
|
|
Tag rootTag = 0;
|
|
const SharedProps &props = nullSharedProps();
|
|
const SharedEventEmitter &eventEmitter = nullSharedEventEmitter();
|
|
const SharedShadowNodeSharedList &children = nullSharedChildren();
|
|
const SharedLocalData &localData = nullLocalData();
|
|
|
|
static SharedProps &nullSharedProps();
|
|
static SharedEventEmitter &nullSharedEventEmitter();
|
|
static SharedShadowNodeSharedList &nullSharedChildren();
|
|
static SharedLocalData &nullLocalData();
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|