Files
pork/parser/src/main/kotlin/gay/pizza/pork/parser/UnterminatedTokenError.kt

6 lines
155 B
Kotlin

package gay.pizza.pork.parser
class UnterminatedTokenError(what: String, sourceIndex: SourceIndex) : ParseError(
"Unterminated $what at $sourceIndex"
)