PositionResponse

data class PositionResponse(val column: String, val length: String, val line: String)

Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes.

Constructors

Link copied to clipboard
constructor(column: String, length: String, line: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The source code column position (of the line) the current instruction was generated from.

Link copied to clipboard

The number of bytes of source code making up this stack trace element.

Link copied to clipboard

The source code line number the current instruction was generated from.