| 1548 | } |
| 1549 | |
| 1550 | size_t ABIFunctions::numVariablesForType(Type const& _type, EncodingOptions const& _options) |
| 1551 | { |
| 1552 | if (_type.category() == Type::Category::Function && !_options.encodeFunctionFromStack) |
| 1553 | return 1; |
| 1554 | else |
| 1555 | return _type.sizeOnStack(); |
| 1556 | } |
| 1557 | |
| 1558 | std::string ABIFunctions::revertReasonIfDebugFunction(std::string const& _message) |
| 1559 | { |
nothing calls this directly
no test coverage detected