Removed cruft

parser_exception_before
Tristan B. V. Kildaire 2021-04-01 14:11:29 +02:00
parent a18252ce21
commit 889ea9155f
1 changed files with 1 additions and 24 deletions

View File

@ -58,30 +58,7 @@ public final class TypeChecker
beginCheck();
}
private string[] validNames;
private bool declareName()
{
return 0;
}
private bool isName(string nameTest)
{
foreach(string name; validNames)
{
if(cmp(nameTest, name) == 0)
{
return true;
}
}
return false;
}
private void declareName(string name)
{
validNames ~= name;
}
private void beginCheck()
{