BreakLocation

@Serializable
data class BreakLocation(val scriptId: ScriptId, val lineNumber: Int, val columnNumber: Int? = null, val type: BreakLocationType? = null)

(undocumented in the protocol definition)

Official doc

Constructors

Link copied to clipboard
constructor(scriptId: ScriptId, lineNumber: Int, columnNumber: Int? = null, type: BreakLocationType? = null)

Properties

Link copied to clipboard
val columnNumber: Int? = null

Column number in the script (0-based).

Link copied to clipboard

Line number in the script (0-based).

Link copied to clipboard

Script identifier as reported in the Debugger.scriptParsed.

Link copied to clipboard
val type: BreakLocationType? = null

(undocumented in the protocol definition)