StackTrace

@Serializable
data class StackTrace(val description: String? = null, val callFrames: List<CallFrame>, val parent: StackTrace? = null, val parentId: StackTraceId? = null)(source)

Call frames for assertions or error messages.

Official doc

Constructors

Link copied to clipboard
constructor(description: String? = null, callFrames: List<CallFrame>, parent: StackTrace? = null, parentId: StackTraceId? = null)

Properties

Link copied to clipboard

JavaScript function name.

Link copied to clipboard
val description: String? = null

String label of this stack trace. For async traces this may be a name of the function that initiated the async call.

Link copied to clipboard
val parent: StackTrace? = null

Asynchronous JavaScript stack trace that preceded this stack, if available.

Link copied to clipboard
val parentId: StackTraceId? = null

Asynchronous JavaScript stack trace that preceded this stack, if available.