| 85 | } |
| 86 | |
| 87 | smtutil::Expression function( |
| 88 | Predicate const& _pred, |
| 89 | ContractDefinition const* _contract, |
| 90 | EncodingContext& _context |
| 91 | ) |
| 92 | { |
| 93 | auto const& function = dynamic_cast<FunctionDefinition const&>(*_pred.programNode()); |
| 94 | return _pred(currentFunctionVariablesForDefinition(function, _contract, _context)); |
| 95 | } |
| 96 | |
| 97 | smtutil::Expression functionCall( |
| 98 | Predicate const& _pred, |
no test coverage detected