aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions/SyntaxError.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-08-15 19:49:48 +0200
committerMarvin Borner2019-08-15 19:49:48 +0200
commit49db23f1c8c3bf6c858eb75b70f9ffd0a839fb3c (patch)
tree0c621eb66b2a4ea57b858e866764754fb7028579 /src/runMain/kotlin/exceptions/SyntaxError.kt
parentbdfbbaca6ed7fb4616a312bbb9de320101311ff8 (diff)
Abstracted pair to token class
Diffstat (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt')
-rw-r--r--src/runMain/kotlin/exceptions/SyntaxError.kt4
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