Open d-u-d-e opened 2 weeks ago
The intended class is at compiler\parser\ast.py
where we define the ASTNode
class (Abstract class denoting a generic AST node.) and all types of AST nodes which inherit from it.
Note: an ASTNode
, in turn, inherits from TreeNote
.
We want to manage ASTs easily and efficiently.