diff -r 41d4ac0b4821 -r c62a4078f269 main.cc --- a/main.cc Mon Jun 06 16:28:41 2011 +0200 +++ b/main.cc Wed Jun 08 11:42:19 2011 +0100 @@ -182,10 +182,12 @@ return EXIT_FAILURE; /* 2nd Pass */ - absyntax_utils_init(tree_root); - add_en_eno_param_decl_c::add_to(tree_root); - - /* not yet implemented... */ + /* basically loads some symbol tables to speed up look ups later on */ + absyntax_utils_init(tree_root); + /* moved to bison, although it could perfectly well still be here instead of in bison code. */ + //add_en_eno_param_decl_c::add_to(tree_root); + + /* Only very simple (not yet complete) data type checking currently implemented... */ if (stage3(tree_root) < 0) return EXIT_FAILURE; @@ -195,6 +197,7 @@ return EXIT_FAILURE; /* 4th Pass */ + /* Call gcc, g++, or whatever... */ /* Currently implemented in the Makefile! */ return 0;