Allow overloading of polymorphic procedures

This commit is contained in:
Ginger Bill
2017-07-02 10:45:22 +01:00
parent d782b3d21d
commit 96d32680fe
5 changed files with 151 additions and 114 deletions

View File

@@ -2448,8 +2448,12 @@ gbString write_type_to_string(gbString str, Type *type) {
}
} else {
GB_ASSERT(var->kind == Entity_TypeName);
#if 0
str = gb_string_appendc(str, "type/");
str = write_type_to_string(str, var->type);
#else
str = gb_string_appendc(str, "type");
#endif
}
}
}