AST building #2

Merged
TopchetoEU merged 74 commits from TopchetoEU/ast-building into master 2022-10-28 11:58:03 +00:00
Showing only changes of commit 24f312d848 - Show all commits

View File

@ -29,5 +29,5 @@ operator_t tree::operator_find(const std::string &raw) {
if (op == raw) return (operator_t)i; if (op == raw) return (operator_t)i;
i++; i++;
} }
throw "Invalid operator '"s + raw + "' given."; throw "Invalid operator '" + raw + "' given.";
} }