Cleaned up

parser_exception_before
Tristan B. V. Kildaire 2021-04-01 15:32:05 +02:00
parent 5c9fd0a229
commit 07c0eb3718
1 changed files with 6 additions and 12 deletions

View File

@ -85,18 +85,12 @@ public final class TypeChecker
private void beginCheck()
{
// checkIt(modulle.getStatements(), modulle.getName());
/* First we define global types (so classes) */
gprintln("dd");
// checkClasses(modulle);
/* TODO: Then we declare global functions */
//checkFunctions(modulle);
/* TODO: Then we declare global variables */
/**
* Make sure there are no name collisions anywhere
* in the Module with an order of precedence of
* Classes being declared before Functions and
* Functions before Variables
*/
checkContainer(modulle);
checkIt(modulle);