from typing import List from Models.AbstractSyntaxTree.Function import Function from Models.AbstractSyntaxTree.Variable import Variable class Class: def __init__(self): self.name: str = '' self.variables: List[Variable] = [] self.functions: List[Function] = [] self.is_public = False