PorygonLang/src/Parser/UnaryOperatorKind.hpp

11 lines
211 B
C++
Raw Normal View History

2019-05-20 15:45:03 +00:00
#ifndef PORYGONLANG_UNARYOPERATORKIND_HPP
#define PORYGONLANG_UNARYOPERATORKIND_HPP
enum class UnaryOperatorKind{
Identity,
Negation,
LogicalNegation,
};
#endif //PORYGONLANG_UNARYOPERATORKIND_HPP