| 240 | } |
| 241 | |
| 242 | void |
| 243 | ExpressionVariable::get_referenced_ptrs(std::vector<const Variable*>& ptrs) const |
| 244 | { |
| 245 | if (var.is_pointer()) { |
| 246 | ptrs.push_back(&var); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | bool |
| 251 | ExpressionVariable::visit_facts(vector<const Fact*>& inputs, CGContext& cg_context) const |
nothing calls this directly
no test coverage detected