From cc8c02d780f703e0ea547e79dacf6a571686e1df Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 15 Aug 2019 22:05:55 +0200 Subject: Improved syntax analyser --- src/runMain/kotlin/exceptions/SyntaxError.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (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 952187e..8609d38 100644 --- a/src/runMain/kotlin/exceptions/SyntaxError.kt +++ b/src/runMain/kotlin/exceptions/SyntaxError.kt @@ -1,8 +1,6 @@ package exceptions -import Token - /** * Gets thrown if the syntax is wrong */ -class SyntaxError(context: Token) : Exception("Unexpected ${context.type}: ${context.content}") \ No newline at end of file +class SyntaxError(description: String, context: String) : Exception("Unexpected $description: $context") \ No newline at end of file -- cgit v1.2.3