TokenCoordinates

data class TokenCoordinates(val line: Int, val column: Int)

The position of a token within the source code.

Parameters

line

line index, starting from 0

column

character index within line, starting from 0

Constructors

Link copied to clipboard
constructor(line: Int, column: Int)

Properties

Link copied to clipboard
val column: Int
Link copied to clipboard
val line: Int