AST building #2

Merged
TopchetoEU merged 74 commits from TopchetoEU/ast-building into master 2022-10-28 11:58:03 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 328788d320 - Show all commits

View File

@ -6,6 +6,8 @@
namespace ppc::comp::tree {
enum operator_t {
NONE,
LESS_THAN,
GREATER_THAN,
LESS_THAN_EQUALS,

View File

@ -7,6 +7,7 @@ using namespace std::string_literals;
std::vector<std::string> operators = {
"(none)",
"<", ">", "<=", ">=", "==", "!=", "&&", "||",
"<<", ">>", "^", "&", "|", "!", "~",
"++", "--",