This repository has been archived on 2025-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025LogProg-project-GhentPr.../src/lexer/state/TokenPosition.kt
2025-04-17 17:49:53 +02:00

3 lines
95 B
Kotlin

package lexer.state
data class TokenPosition(val line: Int, val column: Int, val length: Int)