| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // Copyright 2020 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * The Firebase Crashlytics `StackFrame` provides a way to construct the lines of
- * a stack trace for reporting along with a recorded `ExceptionModel`.
- */
- NS_SWIFT_NAME(StackFrame)
- @interface FIRStackFrame : NSObject
- /** :nodoc: */
- - (instancetype)init NS_UNAVAILABLE;
- /**
- * Initializes a symbolicated `StackFrame` with the given required fields. Symbolicated
- * `StackFrame`s will appear in the Crashlytics dashboard as reported in these fields.
- *
- * @param symbol - The function or method name
- * @param file - the file where the exception occurred
- * @param line - the line number
- */
- - (instancetype)initWithSymbol:(NSString *)symbol file:(NSString *)file line:(NSInteger)line;
- /**
- * Creates a symbolicated `StackFrame` from an address. The address will be
- * symbolicated in the Crashlytics backend for the customer and reported in the
- * Crashlytics dashboard with the appropriate file name and line number. If an
- * invalid address is provided it will appear in the dashboard as missing.
- *
- * @param address - the address where the exception occurred
- */
- + (instancetype)stackFrameWithAddress:(NSUInteger)address;
- /**
- * Creates a symbolicated `StackFrame` with the given required fields. Symbolicated
- * `StackFrame`s will appear in the Crashlytics dashboard as reported in these fields.
- *
- * @param symbol - The function or method name
- * @param file - the file where the exception occurred
- * @param line - the line number
- */
- + (instancetype)stackFrameWithSymbol:(NSString *)symbol
- file:(NSString *)file
- line:(NSInteger)line NS_SWIFT_UNAVAILABLE("");
- @end
- NS_ASSUME_NONNULL_END
|