aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2019-08-17 18:46:00 +0200
committerMarvin Borner2019-08-17 18:46:00 +0200
commit777c20de7791fd254ce747f7d7ab4b681c5a6001 (patch)
tree285672ccb4a147199b4c243bd5f6117a7759e7e0
parent266b4b26bb643190bcf87753dcbcf6bb6800a1bd (diff)
Renaming and semantic testing
-rw-r--r--example.run3
-rw-r--r--src/runMain/kotlin/Lexical.kt2
-rw-r--r--src/runMain/kotlin/Semantic.kt11
-rw-r--r--src/runMain/kotlin/Syntax.kt11
-rw-r--r--src/runMain/kotlin/Token.kt9
-rw-r--r--src/runMain/kotlin/exceptions/LexicalError.kt (renamed from src/runMain/kotlin/exceptions/UnknownType.kt)2
6 files changed, 25 insertions, 13 deletions
diff --git a/example.run b/example.run
index b6fa3dc..762bf5d 100644
--- a/example.run
+++ b/example.run
@@ -1 +1,2 @@
-print "hallo"; print baum ;
+test = 123;
+print(test); \ No newline at end of file
diff --git a/src/runMain/kotlin/Lexical.kt b/src/runMain/kotlin/Lexical.kt
index 4f6c419..ff17d17 100644
--- a/src/runMain/kotlin/Lexical.kt
+++ b/src/runMain/kotlin/Lexical.kt
@@ -63,7 +63,7 @@ class Lexical {
(token + next).matches(Regex("[0-9]*")) -> Skip
token.matches(Regex("[0-9]*")) -> Constant
- token in emptiness && token.length > 1 -> throw UnknownType(token)
+ token in emptiness && token.length > 1 -> throw LexicalError(token)
token in emptiness -> Empty
token in punctuation -> Punctuation
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
diff --git a/src/runMain/kotlin/Syntax.kt b/src/runMain/kotlin/Syntax.kt
index 54a0ebe..950cd4c 100644
--- a/src/runMain/kotlin/Syntax.kt
+++ b/src/runMain/kotlin/Syntax.kt
@@ -97,7 +97,7 @@ class Syntax {
Classifier -> Unit
Empty -> Unit
StatementEnd -> Unit
- Skip -> throw UnknownType(token.content)
+ Skip -> throw LexicalError(token.content)
}
}
@@ -110,13 +110,4 @@ class Syntax {
throw SyntaxError(token.type.toString().toLowerCase(), token.content, token.lineNumber)
}
}
-
- /**
- * Finds the next non empty token by [index]
- */
- private fun nextNonEmpty(statement: MutableList<Token>, index: Int): Token {
- var i = index + 1
- while (statement[i].type == Empty) i++
- return statement[i]
- }
} \ No newline at end of file
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
diff --git a/src/runMain/kotlin/exceptions/UnknownType.kt b/src/runMain/kotlin/exceptions/LexicalError.kt
index a696891..a891d3f 100644
--- a/src/runMain/kotlin/exceptions/UnknownType.kt
+++ b/src/runMain/kotlin/exceptions/LexicalError.kt
@@ -3,4 +3,4 @@ package exceptions
/**
* Gets thrown if the entered token/code does not exist in this language
*/
-class UnknownType(token: String = "") : Exception("Token type not known: $token") \ No newline at end of file
+class LexicalError(token: String = "") : Exception("Token type not known: $token") \ No newline at end of file