PorygonLang/src/Parser/UnaryOperatorKind.hpp

14 lines
277 B
C++
Raw Normal View History

2019-05-20 15:45:03 +00:00
#ifndef PORYGONLANG_UNARYOPERATORKIND_HPP
#define PORYGONLANG_UNARYOPERATORKIND_HPP
namespace Porygon::Parser {
enum class UnaryOperatorKind {
Identity,
Negation,
2019-09-12 16:19:06 +00:00
Count,
LogicalNegation,
};
}
2019-05-20 15:45:03 +00:00
#endif //PORYGONLANG_UNARYOPERATORKIND_HPP