diff options
author | Marvin Borner | 2019-08-15 18:46:23 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-15 18:46:23 +0200 |
commit | bdfbbaca6ed7fb4616a312bbb9de320101311ff8 (patch) | |
tree | d3d3dccb04ae2660077ede46ab6c9ee7be10f87e /src/runMain/kotlin/exceptions/SyntaxError.kt | |
parent | 5707ecbabfe3b9b580fcc7b2ebdfef6a60786c40 (diff) |
Fixed token merging
Diffstat (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt')
-rw-r--r-- | src/runMain/kotlin/exceptions/SyntaxError.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/runMain/kotlin/exceptions/SyntaxError.kt b/src/runMain/kotlin/exceptions/SyntaxError.kt index 3fc2a69..0596f52 100644 --- a/src/runMain/kotlin/exceptions/SyntaxError.kt +++ b/src/runMain/kotlin/exceptions/SyntaxError.kt @@ -1,6 +1,8 @@ package exceptions +import TokenType + /** * Gets thrown if the syntax is wrong */ -class SyntaxError(context: String = "") : Exception("Syntax error: $context")
\ No newline at end of file +class SyntaxError(context: Pair<String, TokenType>) : Exception("Unexpected ${context.second}: ${context.first}")
\ No newline at end of file |