#include <ast.hpp>
Public Fields | |
| String | Name |
| The name of the identifier as parsed from the expression string. | |
Public Fields inherited from AST | |
| Types | NodeType |
| integer | Position |
Public Methods | |
| ASTIdentifier (const String &name, integer position) | |
| virtual void | Assemble (Program &program, MonoAllocator &allocator, AString &normalized) override |
| virtual AST * | Optimize (Normalization normalization) override |
Public Methods inherited from AST | |
| AST ()=delete | |
| AST (Types type, integer position) | |
| virtual | ~AST () |
Additional Inherited Members | |
Public Types inherited from AST | |
| enum | Types { Literal, Identifier, Function, UnaryOp, BinaryOp, TernaryOp } |
|
inlineexplicit |
|
overridevirtual |
Implements abstract method.
| program | The program to be compiled. | |
| allocator | An allocator usable for temporary objects. | |
| [out] | normalized | The normalized string, built during recursive compilation of the AST. |
Implements AST.
Definition at line 177 of file ast.cpp.
|
overridevirtual |