chore: add NONE operator
This commit is contained in:
parent
ef79208438
commit
328788d320
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
namespace ppc::comp::tree {
|
namespace ppc::comp::tree {
|
||||||
enum operator_t {
|
enum operator_t {
|
||||||
|
NONE,
|
||||||
|
|
||||||
LESS_THAN,
|
LESS_THAN,
|
||||||
GREATER_THAN,
|
GREATER_THAN,
|
||||||
LESS_THAN_EQUALS,
|
LESS_THAN_EQUALS,
|
||||||
|
@ -7,6 +7,7 @@ using namespace std::string_literals;
|
|||||||
|
|
||||||
|
|
||||||
std::vector<std::string> operators = {
|
std::vector<std::string> operators = {
|
||||||
|
"(none)",
|
||||||
"<", ">", "<=", ">=", "==", "!=", "&&", "||",
|
"<", ">", "<=", ">=", "==", "!=", "&&", "||",
|
||||||
"<<", ">>", "^", "&", "|", "!", "~",
|
"<<", ">>", "^", "&", "|", "!", "~",
|
||||||
"++", "--",
|
"++", "--",
|
||||||
|
Loading…
Reference in New Issue
Block a user