begin typechecker + rename

This commit is contained in:
ChUrl
2020-12-13 15:02:08 +01:00
parent ed99c71d44
commit 8e7292ea3e
2 changed files with 13 additions and 4 deletions

View File

@ -0,0 +1,13 @@
package typechecker;
import parser.ast.AST;
public final class TypeChecker {
private TypeChecker() {}
// Wirft exception bei typeerror, returned nix
public static void validate(AST tree) {
SymbolTable table = SymbolTable.fromAST(tree);
}
}

View File

@ -1,4 +0,0 @@
package typechecker;
public class Typechecker {
}