cclang/src/Models/AbstractSyntaxTree/Class.py
2020-09-17 19:33:52 +02:00

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