aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Syntax.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/runMain/kotlin/Syntax.kt')
-rw-r--r--src/runMain/kotlin/Syntax.kt11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/runMain/kotlin/Syntax.kt b/src/runMain/kotlin/Syntax.kt
index 54a0ebe..950cd4c 100644
--- a/src/runMain/kotlin/Syntax.kt
+++ b/src/runMain/kotlin/Syntax.kt
@@ -97,7 +97,7 @@ class Syntax {
Classifier -> Unit
Empty -> Unit
StatementEnd -> Unit
- Skip -> throw UnknownType(token.content)
+ Skip -> throw LexicalError(token.content)
}
}
@@ -110,13 +110,4 @@ class Syntax {
throw SyntaxError(token.type.toString().toLowerCase(), token.content, token.lineNumber)
}
}
-
- /**
- * Finds the next non empty token by [index]
- */
- private fun nextNonEmpty(statement: MutableList<Token>, index: Int): Token {
- var i = index + 1
- while (statement[i].type == Empty) i++
- return statement[i]
- }
} \ No newline at end of file