Tree::dump

- The dump method now composes a string, instead of writing to std::cout, which
  make integration easier.
This commit is contained in:
Paul Beckingham
2013-09-01 14:28:22 -04:00
parent 314d0e9d01
commit bdf88d10a7
5 changed files with 19 additions and 17 deletions

View File

@@ -181,7 +181,7 @@ int Context::initialize (int argc, const char** argv)
// Initialize the command line parser.
if (parseTree && config.getBoolean ("debug"))
parseTree->dump ();
debug (parseTree->dump ());
// END EXPERIMENTAL CODE