StackTrace

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

Call frames for assertions or error messages.

Constructors

Link copied to clipboard
constructor(description: String? = null, callFrames: List<Runtime.CallFrame>, parent: Runtime.StackTrace? = null, parentId: Runtime.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

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

Link copied to clipboard

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