aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Semantic.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/runMain/kotlin/Semantic.kt')
-rw-r--r--src/runMain/kotlin/Semantic.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/runMain/kotlin/Semantic.kt b/src/runMain/kotlin/Semantic.kt
new file mode 100644
index 0000000..1657eeb
--- /dev/null
+++ b/src/runMain/kotlin/Semantic.kt
@@ -0,0 +1,8 @@
+class Semantic {
+ /**
+ * Checks and validates whether the code complies with the semantic rules
+ */
+ fun check(statements: MutableList<MutableList<Token>>): Boolean {
+ return true
+ }
+} \ No newline at end of file