Call method

entity_declaration_type_checking
Tristan B. V. Kildaire 2021-04-26 10:00:32 +02:00
parent bbef8c00f9
commit c9c913eaae
1 changed files with 2 additions and 0 deletions

View File

@ -68,9 +68,11 @@ public final class TypeChecker
Type foundType;
/* Check if the type is built-in */
/* TODO: Just use `getBuiltInType`, if null then yeah - not built-in */
if(isBuiltInType(typeString))
{
/* TODO: Get the built-in type */
foundType = getBuiltInType(typeString);
}
/* If not built-in, resolve it */
else