Typecheck

- Marked code as dead
This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-12 23:34:24 +02:00
parent 0480cecef6
commit 1dd70911d0
1 changed files with 2 additions and 5 deletions

View File

@ -1170,16 +1170,13 @@ public final class TypeChecker
return foundType; return foundType;
} }
/* TODO: TYpeEntity check sepeare */ // TODO: What actually is the point of this? It literally generates a `Class[]`
/* TODO: Parsing within function etc. */ // ... and then tosses it after returning. (See issue "Dead code tracking" #83)
private void checkDefinitionTypes(Container c) private void checkDefinitionTypes(Container c)
{ {
/* Check variables and functions (TypedEntities) declarations */ /* Check variables and functions (TypedEntities) declarations */
// checkTypedEntitiesTypeNames(c); // checkTypedEntitiesTypeNames(c);
/* Check class inheritance types */ /* Check class inheritance types */
Clazz[] classes; Clazz[] classes;