MCPcopy Create free account
hub / github.com/argotorg/solidity / compiledContract

Method compiledContract

libsolidity/codegen/CompilerContext.cpp:252–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252std::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
259std::shared_ptr<evmasm::Assembly> CompilerContext::compiledContractRuntime(ContractDefinition const& _contract) const
260{

Callers 1

Calls 3

findMethod · 0.45
endMethod · 0.45
assemblyPtrMethod · 0.45

Tested by

no test coverage detected