aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example.run2
-rw-r--r--src/runMain/kotlin/Lexical.kt9
-rw-r--r--src/runMain/kotlin/Syntax.kt14
3 files changed, 20 insertions, 5 deletions
diff --git a/example.run b/example.run
index f7d418f..b6fa3dc 100644
--- a/example.run
+++ b/example.run
@@ -1 +1 @@
-print string(2 + 2); \ No newline at end of file
+print "hallo"; print baum ;
diff --git a/src/runMain/kotlin/Lexical.kt b/src/runMain/kotlin/Lexical.kt
index 7cd66af..459927c 100644
--- a/src/runMain/kotlin/Lexical.kt
+++ b/src/runMain/kotlin/Lexical.kt
@@ -3,12 +3,14 @@ import exceptions.*
class Lexical {
fun analyze(source: String): MutableList<MutableList<Pair<String, TokenType>>> {
var buffer = ""
+ var skipStatementEnd = false
var statementEnd: Boolean
val statements = mutableListOf<MutableList<Pair<String, TokenType>>>()
val currentStatement = mutableListOf<Pair<String, TokenType>>()
for (i in source.indices) {
buffer += source[i]
- statementEnd = source[i] == ';'
+ if (source[i] == '"') skipStatementEnd = !skipStatementEnd
+ statementEnd = source[i] == ';' && !skipStatementEnd
val tokenType = getTokenType(buffer, if (source.length > i + 1) source[i + 1] else ' ')
if (tokenType != TokenType.Skip && !statementEnd) {
currentStatement.add(buffer to tokenType)
@@ -48,8 +50,8 @@ class Lexical {
(token + next).matches(Regex("[0-9]*")) -> TokenType.Skip
token.matches(Regex("[0-9]*")) -> TokenType.Constant
- token.contains(" ") && token.length > 1 -> throw UnknownType(token)
- token == " " -> TokenType.Empty
+ token in emptiness && token.length > 1 -> throw UnknownType(token)
+ token in emptiness -> TokenType.Empty
token in punctuation -> TokenType.Punctuation
@@ -69,4 +71,5 @@ class Lexical {
private val punctuation = listOf(",", ":", ".", ";")
private val brackets = listOf("(", ")", "[", "]", "{", "}") // TODO: Use brackets for functions
private val classifier = listOf("\"", "'")
+ private val emptiness = listOf(" ", "\t")
}
diff --git a/src/runMain/kotlin/Syntax.kt b/src/runMain/kotlin/Syntax.kt
index 901b8d8..46f2306 100644
--- a/src/runMain/kotlin/Syntax.kt
+++ b/src/runMain/kotlin/Syntax.kt
@@ -1,6 +1,18 @@
class Syntax {
fun check(statements: MutableList<MutableList<Pair<String, TokenType>>>): Boolean {
- print(statements)
+ for (statement in statements) {
+ removePadding(statement)
+ }
return true
}
+
+ private fun removePadding(statement: MutableList<Pair<String, TokenType>>) {
+ while (statement[0].second == TokenType.Empty) {
+ statement.removeAt(0)
+ }
+
+ while (statement[statement.size - 1].second == TokenType.Empty) {
+ statement.removeAt(statement.size - 1)
+ }
+ }
} \ No newline at end of file