Implements expression parsing
This commit is contained in:
10
src/Parser/UnaryOperatorKind.hpp
Normal file
10
src/Parser/UnaryOperatorKind.hpp
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
#ifndef PORYGONLANG_UNARYOPERATORKIND_HPP
|
||||
#define PORYGONLANG_UNARYOPERATORKIND_HPP
|
||||
|
||||
enum class UnaryOperatorKind{
|
||||
Identity,
|
||||
Negation,
|
||||
LogicalNegation,
|
||||
};
|
||||
#endif //PORYGONLANG_UNARYOPERATORKIND_HPP
|
||||
Reference in New Issue
Block a user