BreakLocation

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

Constructors

Link copied to clipboard
constructor(scriptId: String, lineNumber: Int, columnNumber: Int? = null, type: String? = 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: String? = null