14 lines
324 B
Python
14 lines
324 B
Python
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
|