Type check binary expressions

This commit is contained in:
2024-05-28 23:39:04 +02:00
parent eaaf782392
commit 6b89074f58
10 changed files with 158 additions and 11 deletions

View File

@ -216,6 +216,10 @@ namespace elna::source
return "«proc»";
case type::comparison_operator:
return "«comparison_operator»";
case type::hat:
return "«^»";
case type::at:
return "«@»";
};
assert(false);
}