From 8039d51f78f7a1cb0acc74a3e8f09d4a522cf6f2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 14 Aug 2019 23:58:10 +0200 Subject: Added ending of statements via ; --- src/runMain/kotlin/Lexical.kt | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'src/runMain/kotlin/Lexical.kt') diff --git a/src/runMain/kotlin/Lexical.kt b/src/runMain/kotlin/Lexical.kt index 8529036..7cd66af 100644 --- a/src/runMain/kotlin/Lexical.kt +++ b/src/runMain/kotlin/Lexical.kt @@ -1,20 +1,25 @@ -import exceptions.UnknownType +import exceptions.* class Lexical { - fun analyze(source: String): MutableList> { + fun analyze(source: String): MutableList>> { var buffer = "" - var statementEnd = false - val tokens = mutableListOf>() + var statementEnd: Boolean + val statements = mutableListOf>>() + val currentStatement = mutableListOf>() for (i in source.indices) { buffer += source[i] statementEnd = source[i] == ';' val tokenType = getTokenType(buffer, if (source.length > i + 1) source[i + 1] else ' ') - if (tokenType != TokenType.Skip) { - tokens += buffer to tokenType + if (tokenType != TokenType.Skip && !statementEnd) { + currentStatement.add(buffer to tokenType) + buffer = "" + } else if (statementEnd) { + statements.add(currentStatement.toMutableList()) + currentStatement.clear() buffer = "" } } - return tokens + return statements } /** -- cgit v1.2.3