Added expression unary

This commit is contained in:
Rafał Grodziński
2025-07-31 22:04:30 +09:00
parent 2e79188cd3
commit c75052e35f
5 changed files with 60 additions and 5 deletions

View File

@@ -1,4 +1,7 @@
#include "Parser/Expression/Expression.h"
#ifndef EXPRESSION_BINARY_H
#define EXPRESSION_BINARY_H
#include "Expression.h"
enum class ExpressionBinaryOperation {
EQUAL,
@@ -26,4 +29,6 @@ public:
ExpressionBinaryOperation getOperation();
shared_ptr<Expression> getLeft();
shared_ptr<Expression> getRight();
};
};
#endif