From 49db23f1c8c3bf6c858eb75b70f9ffd0a839fb3c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 15 Aug 2019 19:49:48 +0200 Subject: Abstracted pair to token class --- src/runMain/kotlin/exceptions/SyntaxError.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runMain/kotlin/exceptions') 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) : 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 -- cgit v1.2.3