added structure & interpreter & lexer & first ast stucture
This commit is contained in:
12
src/Interpreter/Validator.py
Normal file
12
src/Interpreter/Validator.py
Normal 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
|
Reference in New Issue
Block a user