-
-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rn): Add Native Linked Errors (RN Mixed stack traces) (#3201)
- Loading branch information
1 parent
a36d5e1
commit e64a66f
Showing
18 changed files
with
1,138 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
RNSentryCocoaTester/RNSentryCocoaTesterTests/RNSentry+initNativeSdk.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#import <Foundation/Foundation.h> | ||
#import <RNSentry/RNSentry.h> | ||
|
||
@interface | ||
SentrySDK (PrivateTests) | ||
- (nullable SentryOptions *) options; | ||
@end | ||
|
||
@interface SentryBinaryImageInfo : NSObject | ||
@property (nonatomic, strong) NSString *name; | ||
@property (nonatomic) uint64_t address; | ||
@property (nonatomic) uint64_t size; | ||
@end | ||
|
||
@interface SentryBinaryImageCache : NSObject | ||
@property (nonatomic, readonly, class) SentryBinaryImageCache *shared; | ||
- (void)start; | ||
- (void)stop; | ||
- (nullable SentryBinaryImageInfo *)imageByAddress:(const uint64_t)address; | ||
@end | ||
|
||
@interface SentryDependencyContainer : NSObject | ||
+ (instancetype)sharedInstance; | ||
@property (nonatomic, strong) SentryDebugImageProvider *debugImageProvider; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.