#include <ast.hpp>
Public Field Index: | |
AST * | Argument |
The argument node. | |
String | Operator |
The operator symbol. | |
Public Field Index: inherited from AST | |
Types | NodeType |
integer | Position |
Public Method Index: | |
ASTUnaryOp (const String &op, AST *argument, integer position) | |
virtual | ~ASTUnaryOp () override |
virtual void | Assemble (Program &program, MonoAllocator &allocator, AString &normalized) override |
virtual AST * | Optimize (Normalization normalization) override |
Public Method Index: inherited from AST | |
AST ()=delete | |
AST (Types type, integer position) | |
virtual | ~AST () |
Additional Inherited Members | |
Public Type Index: inherited from AST | |
enum class | Types { Literal , Identifier , Function , UnaryOp , BinaryOp , TernaryOp } |
|
inlineexplicit |
|
inlineoverridevirtual |
|
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 290 of file ast.cpp.
|
overridevirtual |