aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/Semantic.kt
blob: 1657eeb4573293a5b8a2672be9891eb8e84f1afa (plain) (blame)
1
2
3
4
5
6
7
8
class Semantic {
    /**
     * Checks and validates whether the code complies with the semantic rules
     */
    fun check(statements: MutableList<MutableList<Token>>): Boolean {
        return true
    }
}