| 250 | } |
| 251 | |
| 252 | std::shared_ptr<evmasm::Assembly> CompilerContext::compiledContract(ContractDefinition const& _contract) const |
| 253 | { |
| 254 | auto ret = m_otherCompilers.find(&_contract); |
| 255 | solAssert(ret != m_otherCompilers.end(), "Compiled contract not found."); |
| 256 | return ret->second->assemblyPtr(); |
| 257 | } |
| 258 | |
| 259 | std::shared_ptr<evmasm::Assembly> CompilerContext::compiledContractRuntime(ContractDefinition const& _contract) const |
| 260 | { |
no test coverage detected