#import #if __has_include() # import # import #else # import # import #endif NS_ASSUME_NONNULL_BEGIN @class SentryFrame; @interface SentryStacktrace : NSObject SENTRY_NO_INIT /** * Array of all SentryFrame in the stacktrace */ @property (nonatomic, strong) NSArray *frames; /** * Registers of the thread for additional information used on the server */ @property (nonatomic, strong) NSDictionary *registers; /** * Indicates that this stack trace is a snapshot triggered by an external signal. */ @property (nonatomic, copy, nullable) NSNumber *snapshot; /** * Initialize a SentryStacktrace with frames and registers * @param frames NSArray * @param registers NSArray * @return SentryStacktrace */ - (instancetype)initWithFrames:(NSArray *)frames registers:(NSDictionary *)registers; /** * This will be called internally, is used to remove duplicated frames for * certain crashes. */ - (void)fixDuplicateFrames; @end NS_ASSUME_NONNULL_END