Files
cclang/src/Interpreter/Validator.py
2020-05-25 22:04:56 +02:00

13 lines
259 B
Python

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, ast: []) -> None:
pass