1
2
3
4
5
6 #ifndef SNGCM_PARSER_OPERATOR_INCLUDED
7 #define SNGCM_PARSER_OPERATOR_INCLUDED
8 #include <stdint.h>
9
10 enum class Operator : uint8_t
11 {
12 none= 0, or_, and_, eq, neq, less, greater, lessOrEq, greaterOrEq, is, as, plusplus, minusminus, plus, minus, mul, div, rem, not_, bitOr, bitXor, bitAnd, shiftLeft, shiftRight, complement, deref, addrOf
13 };
14
15 #endif // SNGCM_PARSER_OPERATOR_INCLUDED