Implements expression parsing
This commit is contained in:
13
src/Parser/BinaryOperatorKind.hpp
Normal file
13
src/Parser/BinaryOperatorKind.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
#ifndef PORYGONLANG_BINARYOPERATORKIND_HPP
|
||||
#define PORYGONLANG_BINARYOPERATORKIND_HPP
|
||||
enum class BinaryOperatorKind{
|
||||
Addition,
|
||||
Subtraction,
|
||||
Multiplication,
|
||||
Division,
|
||||
Equality,
|
||||
LogicalAnd,
|
||||
LogicalOr,
|
||||
};
|
||||
#endif //PORYGONLANG_BINARYOPERATORKIND_HPP
|
||||
Reference in New Issue
Block a user