chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.runtime / StackTrace

StackTrace

data class StackTrace

Call frames for assertions or error messages.

Constructors

<init>

Call frames for assertions or error messages.

StackTrace(description: String? = null, callFrames: List<CallFrame>, parent: StackTrace? = null, parentId: StackTraceId? = null)

Properties

callFrames

JavaScript function name.

val callFrames: List<CallFrame>

description

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

val description: String?

parent

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

val parent: StackTrace?

parentId

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

val parentId: StackTraceId?