| 161 | } |
| 162 | |
| 163 | void |
| 164 | StatementIf::output_branches(std::ostream &out, FactMgr* fm, int indent) const |
| 165 | { |
| 166 | if_true.Output(out, fm, indent); |
| 167 | output_tab(out, indent); |
| 168 | out << "else"; |
| 169 | outputln(out); |
| 170 | if_false.Output(out, fm, indent); |
| 171 | } |
| 172 | |
| 173 | bool |
| 174 | StatementIf::visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const |
nothing calls this directly
no test coverage detected