aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/expression.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/include/expression.hpp')
-rw-r--r--c_compiler/include/expression.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/c_compiler/include/expression.hpp b/c_compiler/include/expression.hpp
index 0ded5c2..57c24ef 100644
--- a/c_compiler/include/expression.hpp
+++ b/c_compiler/include/expression.hpp
@@ -30,9 +30,7 @@ public:
virtual int postfixStackPosition(VariableStackBindings bindings) const;
virtual void setPostfixExpression(Expression *postfix_expression);
virtual std::string id() const;
- virtual ExpressionPtr getLhs() const;
- virtual ExpressionPtr getRhs() const;
-
+
void linkExpression(Expression* next_expression);
ExpressionPtr nextExpression() const;
};
@@ -51,8 +49,9 @@ public:
virtual int constantFold() const;
virtual void expressionDepth(unsigned &depth_count) const;
- virtual ExpressionPtr getLhs() const;
- virtual ExpressionPtr getRhs() const;
+
+ ExpressionPtr getLhs() const;
+ ExpressionPtr getRhs() const;
void evaluateExpression(VariableStackBindings bindings, unsigned &label_count) const;
};