main.cc
changeset 315 c62a4078f269
parent 279 c0453b7f99df
child 350 2c3c4dc34979
--- 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;