Skip to content
Snippets Groups Projects
Commit 607acaf4 authored by ilor's avatar ilor
Browse files

use the tagset-aware valuye printing in wcclparser main

parent 9bf7a05a
Branches
No related merge requests found
......@@ -105,7 +105,8 @@ bool process_line(const std::string& line, Parser& parser)
Wccl::FunExecContext cx(sc, retOp->variables);
retVal = retOp->get_op_base()->apply_internal(cx);
if (retVal) {
std::cerr << "Parsed expression: " << retVal->to_raw_string()
std::cerr << "Parsed expression: "
<< retVal->to_string(parser.tagset())
<< std::endl;
} else {
std::cerr << "Problem while parsing -- "
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment