Basic polymorphic named procedure parameters for procedures and records

This commit is contained in:
gingerBill
2020-04-13 15:48:56 +01:00
parent f09b6a4c90
commit f229084baa
9 changed files with 165 additions and 44 deletions

View File

@@ -1039,6 +1039,9 @@ bool is_type_constant_type(Type *t) {
if (t->kind == Type_BitSet) {
return true;
}
if (t->kind == Type_Proc) {
return true;
}
return false;
}
bool is_type_float(Type *t) {