aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Token.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/Token.kt
parent266b4b26bb643190bcf87753dcbcf6bb6800a1bd (diff)
Renaming and semantic testing
Diffstat (limited to 'src/runMain/kotlin/Token.kt')
-rw-r--r--src/runMain/kotlin/Token.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/runMain/kotlin/Token.kt b/src/runMain/kotlin/Token.kt
index d132968..df5d3d2 100644
--- a/src/runMain/kotlin/Token.kt
+++ b/src/runMain/kotlin/Token.kt
@@ -3,3 +3,12 @@ class Token {
lateinit var type: TokenType
var lineNumber: Int = 0
}
+
+/**
+ * Finds the next non empty token by [index]
+ */
+fun nextNonEmpty(statement: MutableList<Token>, index: Int): Token {
+ var i = index + 1
+ while (statement[i].type == TokenType.Empty) i++
+ return statement[i]
+} \ No newline at end of file