| 221 | } |
| 222 | |
| 223 | void statement_expression::repl_run_impl() |
| 224 | { |
| 225 | const var &result = context->instance->parse_expr(mTree.root()); |
| 226 | std::cout << "Result: " << result.to_string() << std::endl; |
| 227 | } |
| 228 | |
| 229 | void statement_expression::dump(std::ostream &o) const |
| 230 | { |
nothing calls this directly
no test coverage detected