mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
12 lines
304 B
C++
12 lines
304 B
C++
#include "expression_node.h"
|
|
#include "allocation_failed_expression_node.h"
|
|
#include "expression_reference.h"
|
|
|
|
TreeNode * ExpressionNode::FailedAllocationStaticNode() {
|
|
return ExpressionRef::FailedAllocationStaticNode();
|
|
}
|
|
|
|
void ExpressionNode::sortChildren() {
|
|
ExpressionRef(this).sortChildren();
|
|
}
|