class DocumentPosition
(source)
A position in an input document.
fun column(): Int
The column number. The first column of the document is column 1. |
|
fun equals(other: Any?): Boolean |
|
fun hashCode(): Int |
|
fun line(): Int
The line number. The first line of the document is line 1. |
|
static fun positionAt(line: Int, column: Int): DocumentPosition
Create a position. |
|
fun toString(): String |