From bdfbbaca6ed7fb4616a312bbb9de320101311ff8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 15 Aug 2019 18:46:23 +0200 Subject: Fixed token merging --- src/runMain/kotlin/exceptions/SyntaxError.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt') 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) : Exception("Unexpected ${context.second}: ${context.first}") \ No newline at end of file -- cgit v1.2.3