|
file | AST.h [code] |
| Provides the definition for every abstract and concrete derived class which represent a particular abstract syntax tree (AST) node type.
|
|
file | Parse.h [code] |
| Parsing methods for creating abstract syntax trees out of AX code.
|
|
file | PrintTree.h [code] |
| Various tools which traverse an AX AST and report information back to a std::ostream.
|
|
file | Scanners.h [code] |
| Retrieve intrinsic information from AX AST by performing various traversal algorithms.
|
|
file | Tokens.h [code] |
| Various function and operator tokens used throughout the AST and code generation.
|
|
file | Visitor.h [code] |
| Contains the AX AST Node Visitor, providing default and customizable traversal and visitation methods on a AST hierarchy. Using the visitor pattern is the recommended way to implement custom operations on AST nodes.
|
|