Removed raw-enums
This commit is contained in:
@@ -33,14 +33,14 @@ namespace PashaBibko::LXC::AST
|
||||
class Operation final : public NodeValue
|
||||
{
|
||||
public:
|
||||
Operation(NodeValuePtr& left, Lexer::Token::TokenType operand, NodeValuePtr& right);
|
||||
Operation(NodeValuePtr& left, Lexer::TokenType operand, NodeValuePtr& right);
|
||||
|
||||
private:
|
||||
// The sides of the operation //
|
||||
NodeValuePtr m_Lhs, m_Rhs;
|
||||
|
||||
// The operand of the operation //
|
||||
Lexer::Token::TokenType m_Operand;
|
||||
Lexer::TokenType m_Operand;
|
||||
};
|
||||
|
||||
class VarDeclaration final : public Node
|
||||
|
||||
Reference in New Issue
Block a user