mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
26d8d41735
Summary: The change contains a bunch of additional asserts that verify some assumptions on which mounting relies on. Working on the previous diffs I realized that it's very easy to broke those and then spend hours trying to understand what exactly went wrong. Changelog: [Internal] Fabric-specific internal change. Reviewed By: sammy-SC Differential Revision: D22324087 fbshipit-source-id: 1152c40248885d02bde62a493a574868c3732273
25 lines
525 B
Objective-C
25 lines
525 B
Objective-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.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTSurfaceStage.h>
|
|
#import <React/RCTSurfaceView.h>
|
|
|
|
@class RCTSurfaceRootView;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RCTSurfaceView (Internal)
|
|
|
|
@property (nonatomic, nullable, strong) RCTSurfaceRootView *rootView;
|
|
@property (nonatomic, assign) RCTSurfaceStage stage;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|