1234567891011121314151617181920212223242526272829303132333435363738 |
- #import <Foundation/Foundation.h>
- #import "CLSAttributes.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CLSStackFrame : NSObject
- + (instancetype)stackFrame;
- + (instancetype)stackFrameWithAddress:(NSUInteger)address;
- + (instancetype)stackFrameWithSymbol:(NSString *)symbol;
- @property (nonatomic, copy, nullable) NSString *symbol;
- @property (nonatomic, copy, nullable) NSString *rawSymbol;
- @property (nonatomic, copy, nullable) NSString *library;
- @property (nonatomic, copy, nullable) NSString *fileName;
- @property (nonatomic, assign) uint32_t lineNumber;
- @property (nonatomic, assign) uint64_t offset;
- @property (nonatomic, assign) uint64_t address;
- @end
- NS_ASSUME_NONNULL_END
|