* */
| 277 | * |
| 278 | */ |
| 279 | bool |
| 280 | ExpressionVariable::compatible(const Expression *exp) const |
| 281 | { |
| 282 | assert(exp); |
| 283 | |
| 284 | //if (!(exp->term_type == eVariable)) |
| 285 | //return false; |
| 286 | |
| 287 | return exp->compatible(&var); |
| 288 | } |
| 289 | |
| 290 | /* |
| 291 | * |
nothing calls this directly
no outgoing calls
no test coverage detected