PorygonLang/src/Parser/UnaryOperatorKind.hpp

14 lines
277 B
C++

#ifndef PORYGONLANG_UNARYOPERATORKIND_HPP
#define PORYGONLANG_UNARYOPERATORKIND_HPP
namespace Porygon::Parser {
enum class UnaryOperatorKind {
Identity,
Negation,
Count,
LogicalNegation,
};
}
#endif //PORYGONLANG_UNARYOPERATORKIND_HPP