aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Lexical.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-08-17 18:46:00 +0200
committerMarvin Borner2019-08-17 18:46:00 +0200
commit777c20de7791fd254ce747f7d7ab4b681c5a6001 (patch)
tree285672ccb4a147199b4c243bd5f6117a7759e7e0 /src/runMain/kotlin/Lexical.kt
parent266b4b26bb643190bcf87753dcbcf6bb6800a1bd (diff)
Renaming and semantic testing
Diffstat (limited to 'src/runMain/kotlin/Lexical.kt')
-rw-r--r--src/runMain/kotlin/Lexical.kt2
1 files changed, 1 insertions, 1 deletions
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