aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Semantic.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/Semantic.kt
parent266b4b26bb643190bcf87753dcbcf6bb6800a1bd (diff)
Renaming and semantic testing
Diffstat (limited to 'src/runMain/kotlin/Semantic.kt')
-rw-r--r--src/runMain/kotlin/Semantic.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/runMain/kotlin/Semantic.kt b/src/runMain/kotlin/Semantic.kt
index 1657eeb..38dbd38 100644
--- a/src/runMain/kotlin/Semantic.kt
+++ b/src/runMain/kotlin/Semantic.kt
@@ -1,8 +1,19 @@
+import TokenType.*
+
class Semantic {
/**
* Checks and validates whether the code complies with the semantic rules
+ * TODO: Handle scopes via { and }
*/
fun check(statements: MutableList<MutableList<Token>>): Boolean {
+ val variables = mutableListOf<List<Token>>()
+ statements.forEach { statement ->
+ if (statement[0].type == Variable) {
+ if (nextNonEmpty(statement, 0).type == Assignment) {
+ variables.add(statement.take(5))
+ }
+ }
+ }
return true
}
} \ No newline at end of file