diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-22 20:00:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-22 20:00:19 +0800 |
commit | f823952d9f0cc1e37dec465111db976c7a1830b2 (patch) | |
tree | e16fd2565c56d2a0f0c9d11e9fbc63c98f3120be /libsolidity/interface/CompilerStack.h | |
parent | a95f057e37b746359a7426e95da32e3236f0603a (diff) | |
parent | ba7d698ee67181afc92fd90d18487245cb303389 (diff) | |
download | dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar.gz dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar.bz2 dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar.lz dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar.xz dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.tar.zst dexon-solidity-f823952d9f0cc1e37dec465111db976c7a1830b2.zip |
Merge pull request #2404 from ethereum/methodidentifiers
Clean up method identifiers handling in CLI/CompilerStack
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r-- | libsolidity/interface/CompilerStack.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h index 3250429b..f7435f0e 100644 --- a/libsolidity/interface/CompilerStack.h +++ b/libsolidity/interface/CompilerStack.h @@ -178,7 +178,8 @@ public: /// Can be one of 4 types defined at @c DocumentationType Json::Value const& natspec(std::string const& _contractName, DocumentationType _type) const; - Json::Value functionHashes(ContractDefinition const& _contract); + /// @returns a JSON representing a map of method identifiers (hashes) to function names. + Json::Value methodIdentifiers(std::string const& _contractName) const; std::string const& onChainMetadata(std::string const& _contractName) const; void useMetadataLiteralSources(bool _metadataLiteralSources) { m_metadataLiteralSources = _metadataLiteralSources; } @@ -190,9 +191,6 @@ public: Scanner const& scanner(std::string const& _sourceName = "") const; /// @returns the parsed source unit with the supplied name. SourceUnit const& ast(std::string const& _sourceName = "") const; - /// @returns the parsed contract with the supplied name. Throws an exception if the contract - /// does not exist. - ContractDefinition const& contractDefinition(std::string const& _contractName) const; /// Helper function for logs printing. Do only use in error cases, it's quite expensive. /// line and columns are numbered starting from 1 with following order: @@ -257,6 +255,10 @@ private: Contract const& contract(std::string const& _contractName = "") const; Source const& source(std::string const& _sourceName = "") const; + /// @returns the parsed contract with the supplied name. Throws an exception if the contract + /// does not exist. + ContractDefinition const& contractDefinition(std::string const& _contractName) const; + std::string createOnChainMetadata(Contract const& _contract) const; std::string computeSourceMapping(eth::AssemblyItems const& _items) const; Json::Value const& contractABI(Contract const&) const; |