* */
| 124 | * |
| 125 | */ |
| 126 | void |
| 127 | StatementBreak::Output(std::ostream &out, FactMgr* /*fm*/, int indent) const |
| 128 | { |
| 129 | output_tab(out, indent); |
| 130 | out << "if ("; |
| 131 | test.Output(out); |
| 132 | out << ")"; |
| 133 | outputln(out); |
| 134 | output_tab(out, indent+1); |
| 135 | out << "break;"; |
| 136 | outputln(out); |
| 137 | } |
| 138 | |
| 139 | bool |
| 140 | StatementBreak::visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const |
nothing calls this directly
no test coverage detected