| 224 | } |
| 225 | |
| 226 | std::vector<smtutil::Expression> getStateExpressionsForCall(SymbolicState const& _state, bool _internal) |
| 227 | { |
| 228 | if (_state.hasBytesConcatFunction()) |
| 229 | return {_state.errorFlag().currentValue(), _internal ? _state.thisAddress(0) : _state.thisAddress(), |
| 230 | _state.abi(0), _state.bytesConcat(0), _state.crypto(0), _internal ? _state.tx(0) : _state.tx(), _state.state()}; |
| 231 | return {_state.errorFlag().currentValue(), _internal ? _state.thisAddress(0) : _state.thisAddress(), |
| 232 | _state.abi(0), _state.crypto(0), _internal ? _state.tx(0) : _state.tx(), _state.state()}; |
| 233 | } |
| 234 | |
| 235 | std::vector<smtutil::Expression> getStateExpressionsForDefinition(SymbolicState const& _state) |
| 236 | { |
no test coverage detected