* */
| 103 | * |
| 104 | */ |
| 105 | void |
| 106 | StatementExpr::Output(std::ostream &out, FactMgr* /*fm*/, int indent) const |
| 107 | { |
| 108 | output_tab(out, indent); |
| 109 | expr.Output(out); |
| 110 | out << ";"; |
| 111 | outputln(out); |
| 112 | } |
| 113 | |
| 114 | bool |
| 115 | StatementExpr::visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const |
nothing calls this directly
no test coverage detected