mirror of
https://github.com/wahyd4/Yep.git
synced 2026-08-09 04:46:35 +10:00
38 lines
1.2 KiB
Objective-C
38 lines
1.2 KiB
Objective-C
//
|
|
// CLSStackFrame.h
|
|
// Crashlytics
|
|
//
|
|
// Copyright 2015 Crashlytics, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Fabric/FABAttributes.h>
|
|
|
|
FAB_START_NONNULL
|
|
|
|
/**
|
|
*
|
|
* This class is used in conjunction with -[Crashlytics recordCustomExceptionName:reason:frameArray:] to
|
|
* record information about non-ObjC/C++ exceptions. All information included here will be displayed
|
|
* in the Crashlytics UI, and can influence crash grouping. Be particularly careful with the use of the
|
|
* address property. If set, Crashlytics will attempt symbolication and could overwrite other properities
|
|
* in the process.
|
|
*
|
|
**/
|
|
@interface CLSStackFrame : NSObject
|
|
|
|
+ (instancetype)stackFrame;
|
|
+ (instancetype)stackFrameWithAddress:(NSUInteger)address;
|
|
+ (instancetype)stackFrameWithSymbol:(NSString *)symbol;
|
|
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE symbol;
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE library;
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE fileName;
|
|
@property (nonatomic, assign) uint32_t lineNumber;
|
|
@property (nonatomic, assign) uint64_t offset;
|
|
@property (nonatomic, assign) uint64_t address;
|
|
|
|
@end
|
|
|
|
FAB_END_NONNULL
|