Objects work now! We have methods!

This commit is contained in:
Nathan Braswell
2014-02-18 21:55:00 -05:00
parent 1791738cd9
commit 37cffac9cd
5 changed files with 70 additions and 45 deletions

View File

@@ -138,7 +138,7 @@ int main(int argc, char* argv[]) {
/*NodeTree<ASTData>* AST =*/
importer.import(programName);
std::map<std::string, NodeTree<ASTData>*> ASTs =importer.getASTMap();
std::map<std::string, NodeTree<ASTData>*> ASTs = importer.getASTMap();
//Do optomization, etc. here.
//None at this time, instead going straight to C in this first (more naive) version