| 67 | void output_header(std::ostream& out, int& indent) const; |
| 68 | virtual void get_exprs(std::vector<const Expression*>& exps) const { if (init_value) exps.push_back(init_value);} |
| 69 | virtual void get_blocks(std::vector<const Block*>& blks) const { if (body) blks.push_back(body);} |
| 70 | virtual bool visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const; |
| 71 | virtual void Output(std::ostream &out, FactMgr* fm, int indent = 0) const; |
| 72 |
nothing calls this directly
no outgoing calls
no test coverage detected