added structure & interpreter & lexer & first ast stucture

This commit is contained in:
edraft
2020-05-22 22:08:37 +02:00
commit ed97118df0
22 changed files with 481 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from Interpreter.Repo import Repo
from Interpreter.Utils import Utils
class Validator:
def __init__(self, repo: Repo, utils: Utils) -> None:
self.__repo = repo
self.__utils = utils
def validate(self) -> None:
pass