diff options
Diffstat (limited to 'src/runMain/kotlin/Semantic.kt')
-rw-r--r-- | src/runMain/kotlin/Semantic.kt | 11 |
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 |