diff options
author | Marvin Borner | 2019-08-15 19:49:48 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-15 19:49:48 +0200 |
commit | 49db23f1c8c3bf6c858eb75b70f9ffd0a839fb3c (patch) | |
tree | 0c621eb66b2a4ea57b858e866764754fb7028579 /src/runMain/kotlin/exceptions/SyntaxError.kt | |
parent | bdfbbaca6ed7fb4616a312bbb9de320101311ff8 (diff) |
Abstracted pair to token class
Diffstat (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt')
-rw-r--r-- | src/runMain/kotlin/exceptions/SyntaxError.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runMain/kotlin/exceptions/SyntaxError.kt b/src/runMain/kotlin/exceptions/SyntaxError.kt index 0596f52..952187e 100644 --- a/src/runMain/kotlin/exceptions/SyntaxError.kt +++ b/src/runMain/kotlin/exceptions/SyntaxError.kt @@ -1,8 +1,8 @@ package exceptions -import TokenType +import Token /** * Gets thrown if the syntax is wrong */ -class SyntaxError(context: Pair<String, TokenType>) : Exception("Unexpected ${context.second}: ${context.first}")
\ No newline at end of file +class SyntaxError(context: Token) : Exception("Unexpected ${context.type}: ${context.content}")
\ No newline at end of file |