From 777c20de7791fd254ce747f7d7ab4b681c5a6001 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 17 Aug 2019 18:46:00 +0200 Subject: Renaming and semantic testing --- src/runMain/kotlin/Lexical.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runMain/kotlin/Lexical.kt') diff --git a/src/runMain/kotlin/Lexical.kt b/src/runMain/kotlin/Lexical.kt index 4f6c419..ff17d17 100644 --- a/src/runMain/kotlin/Lexical.kt +++ b/src/runMain/kotlin/Lexical.kt @@ -63,7 +63,7 @@ class Lexical { (token + next).matches(Regex("[0-9]*")) -> Skip token.matches(Regex("[0-9]*")) -> Constant - token in emptiness && token.length > 1 -> throw UnknownType(token) + token in emptiness && token.length > 1 -> throw LexicalError(token) token in emptiness -> Empty token in punctuation -> Punctuation -- cgit v1.2.3