Allow declaring type synonyms

This commit is contained in:
2025-01-07 14:37:30 +01:00
parent ed1bb621d6
commit 2d61828903
13 changed files with 274 additions and 97 deletions

View File

@ -36,6 +36,10 @@ namespace gcc
{
return "String";
}
else if (is_array_type(type))
{
return "array";
}
else
{
return "<<unknown-type>>";