Now parses into parse trees! Still does not add the null-reducable trees, and there are a few ordering mistakes, but it works.

This commit is contained in:
Nathan Braswell
2013-08-10 18:24:37 -04:00
parent 9f3370481e
commit b292bd15ae
2 changed files with 10 additions and 10 deletions

View File

@@ -220,7 +220,7 @@ std::string NodeTree<T>::DOTGraphStringHelper() {
if (children[i] != NULL)
ourDOTRelation += getDOTName() + " -> " + children[i]->getDOTName() + ";\n" + children[i]->DOTGraphStringHelper();
else
ourDOTRelation += getDOTName() + " -> BAD_NULL_" + getDOTName();
ourDOTRelation += getDOTName() + " -> BAD_NULL_" + getDOTName() + "\n";
}
return(ourDOTRelation);
}