| 2572 | } |
| 2573 | |
| 2574 | void SMTEncoder::createExpr(Expression const& _e) |
| 2575 | { |
| 2576 | bool abstract = m_context.createExpression(_e); |
| 2577 | if (abstract) |
| 2578 | m_unsupportedErrors.warning( |
| 2579 | 8364_error, |
| 2580 | _e.location(), |
| 2581 | "Assertion checker does not yet implement type " + _e.annotation().type->toString() |
| 2582 | ); |
| 2583 | } |
| 2584 | |
| 2585 | void SMTEncoder::defineExpr(Expression const& _e, smtutil::Expression _value) |
| 2586 | { |
nothing calls this directly
no test coverage detected