Fixed the debug output of the pre-command "args".

This commit is contained in:
John Wiegley 2009-02-07 00:04:19 -04:00
parent b4ae22b237
commit e5befb0102

View file

@ -46,13 +46,12 @@ value_t parse_command(call_scope_t& args)
report_t& report(find_scope<report_t>(args));
std::ostream& out(report.output_stream);
out << "--- Input text ---" << std::endl;
out << "--- Input expression ---" << std::endl;
out << *arg << std::endl;
out << std::endl << "--- Text as parsed ---" << std::endl;
expr_t expr(*arg);
expr.print(out);
out << std::endl;
expr.dump(out);
out << std::endl << "--- Expression tree ---" << std::endl;
expr.dump(out);