3 lines
95 B
Kotlin
3 lines
95 B
Kotlin
package lexer.state
|
|
|
|
data class TokenPosition(val line: Int, val column: Int, val length: Int)
|