Add error handling for binary operators

This commit is contained in:
2024-12-28 14:33:35 +01:00
parent d46608b358
commit 02efda5e70
3 changed files with 106 additions and 9 deletions

View File

@ -486,5 +486,7 @@ namespace source
expression& operand();
unary_operator operation() const noexcept;
};
const char *print_binary_operator(const binary_operator operation);
}
}