#include <tree.h>
Public Member Functions | |
AssignmentNode (const SourcePos &sourcePos) | |
Constructor. | |
virtual void | checkVectorSize () const |
Check the consistency in vectors' size. | |
virtual void | emit (PreLinkBytecode &bytecodes) const |
Generate bytecode. | |
virtual Node * | expandToAsebaTree (std::wostream *dump, unsigned int index) |
Second pass to expand "abstract" nodes into more concrete ones. | |
virtual Node * | optimize (std::wostream *dump) |
Optimize this node, return the optimized node. | |
virtual AssignmentNode * | shallowCopy () |
Return a shallow copy of the object (children point to the same objects) | |
virtual std::wstring | toNodeName () const |
Return a string representation of the name of this node. | |
virtual std::wstring | toWString () const |
Return a string representation of this node. | |
virtual ReturnType | typeCheck () const |
Typecheck this node, throw an exception if there is any type violation. |
Node for assignation. children[0] is store code children[1] expression to store
Aseba::AssignmentNode::AssignmentNode | ( | const SourcePos & | sourcePos | ) | [inline] |
void Aseba::AssignmentNode::checkVectorSize | ( | ) | const [virtual] |
Check the consistency in vectors' size.
Reimplemented from Aseba::Node.
Definition at line 196 of file tree-expand.cpp.
Node * Aseba::AssignmentNode::expandToAsebaTree | ( | std::wostream * | dump, |
unsigned int | index | ||
) | [virtual] |
Second pass to expand "abstract" nodes into more concrete ones.
Reimplemented from Aseba::Node.
Definition at line 43 of file tree-expand.cpp.
virtual AssignmentNode* Aseba::AssignmentNode::shallowCopy | ( | ) | [inline, virtual] |
Return a shallow copy of the object (children point to the same objects)
Implements Aseba::Node.
virtual std::wstring Aseba::AssignmentNode::toNodeName | ( | ) | const [inline, virtual] |
Return a string representation of the name of this node.
Implements Aseba::Node.
virtual std::wstring Aseba::AssignmentNode::toWString | ( | ) | const [inline, virtual] |
Return a string representation of this node.
Implements Aseba::Node.