Improved parsing
This commit is contained in:
9
src/Models/AbstractSyntaxTree/AbstractSyntaxTree.py
Normal file
9
src/Models/AbstractSyntaxTree/AbstractSyntaxTree.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from typing import List
|
||||
|
||||
from Models.Interpreter.Token import Token
|
||||
|
||||
|
||||
class AbstractSyntaxTree:
|
||||
|
||||
def __init__(self):
|
||||
self.tokens: List[Token] = []
|
Reference in New Issue
Block a user