| 130 | } |
| 131 | |
| 132 | std::string |
| 133 | Expression::to_string(void) const |
| 134 | { |
| 135 | ostringstream oss; |
| 136 | Output(oss); |
| 137 | return oss.str(); |
| 138 | } |
| 139 | |
| 140 | std::vector<const ExpressionVariable*> |
| 141 | Expression::get_dereferenced_ptrs(void) const |
nothing calls this directly
no outgoing calls
no test coverage detected