mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-01-12 22:50:10 +08:00
Summary: There are a number of nullability warnings in `RCTExceptionsManager` when building React Native for iOS with Xcode 10.2. This resolves them without changing the existing behavior. See the warnings here:  [iOS] [Fixed] - Fix nullability warnings in RCTExceptionsManager Pull Request resolved: https://github.com/facebook/react-native/pull/24467 Differential Revision: D14973485 Pulled By: cpojer fbshipit-source-id: 2fac9f067ac9418397c3913760a2403f9a2cc147
38 lines
1.3 KiB
Objective-C
38 lines
1.3 KiB
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 <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol RCTExceptionsManagerDelegate <NSObject>
|
|
|
|
- (void)handleSoftJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId;
|
|
- (void)handleFatalJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId;
|
|
|
|
@optional
|
|
- (void)updateJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId;
|
|
|
|
@end
|
|
|
|
@interface RCTExceptionsManager : NSObject <RCTBridgeModule>
|
|
|
|
- (instancetype)initWithDelegate:(id<RCTExceptionsManagerDelegate>)delegate;
|
|
|
|
- (void)reportSoftException:(nullable NSString *)message stack:(nullable NSArray<NSDictionary *> *)stack exceptionId:(NSNumber *)exceptionId;
|
|
- (void)reportFatalException:(nullable NSString *)message stack:(nullable NSArray<NSDictionary *> *)stack exceptionId:(NSNumber *)exceptionId;
|
|
|
|
@property (nonatomic, weak) id<RCTExceptionsManagerDelegate> delegate;
|
|
|
|
@property (nonatomic, assign) NSUInteger maxReloadAttempts;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|