| 1044 | } |
| 1045 | |
| 1046 | std::string IRGenerator::callValueCheck() |
| 1047 | { |
| 1048 | return "if callvalue() { " + m_utils.revertReasonIfDebugFunction("Ether sent to non-payable function") + "() }"; |
| 1049 | } |
| 1050 | |
| 1051 | std::string IRGenerator::dispatchRoutine(ContractDefinition const& _contract) |
| 1052 | { |
nothing calls this directly
no test coverage detected