StackFrame

A function call within a stack trace.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
@SerializedName(value = "location")
@Expose
open var location: Location
A location within a programming artifact.
Link copied to clipboard
@SerializedName(value = "module")
@Expose
open var module: String
The name of the module that contains the code of this stack frame.
Link copied to clipboard
@SerializedName(value = "parameters")
@Expose
open var parameters: List<String>
The parameters of the call that is executing.
Link copied to clipboard
@SerializedName(value = "properties")
@Expose
open var properties: PropertyBag
Key/value pairs that provide additional information about the object.
Link copied to clipboard
@SerializedName(value = "threadId")
@Expose
open var threadId: Integer
The thread identifier of the stack frame.

Functions

Link copied to clipboard
open fun equals(other: Any): Boolean
Link copied to clipboard
abstract fun getProperties(): PropertyBag
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
abstract fun setProperties(<set-?>: PropertyBag)
Link copied to clipboard
open fun toString(): String
Link copied to clipboard
open fun updateProperties(mutator: (in PropertyBag) -> Unit)
Link copied to clipboard
open fun withLocation(location: Location): StackFrame
Link copied to clipboard
open fun withModule(module: String): StackFrame
Link copied to clipboard
open fun withParameters(parameters: List<String>): StackFrame
Link copied to clipboard
open fun withProperties(properties: PropertyBag): StackFrame
Link copied to clipboard
open fun withThreadId(threadId: Integer): StackFrame