TextLocation

data class TextLocation(val start: Int, val end: Int)

Stores character start and end positions of a text file.

Constructors

Link copied to clipboard
fun TextLocation(start: Int, end: Int)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val end: Int
Link copied to clipboard
val start: Int