aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-15 16:10:18 +0800
committerGitHub <noreply@github.com>2017-06-15 16:10:18 +0800
commit9084d48750afeed128e4d1b7cfe5e836d773d3f3 (patch)
tree83e7a9cc3375f0406bd6152e2963243c33849439 /libsolidity/interface/CompilerStack.h
parent3cb71ac51624377174029e244b3cef950dedbfe8 (diff)
parent5f7bca94e5174738aea294c51f4bea2f8b450d0d (diff)
downloaddexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.gz
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.bz2
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.lz
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.xz
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.zst
dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.zip
Merge pull request #2382 from ruchevits/combined-json-hashes
Allow including hashes of method signatures in --combined-json output
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index bffdeabd..3250429b 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -177,6 +177,9 @@ public:
/// @param type The type of the documentation to get.
/// 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);
+
std::string const& onChainMetadata(std::string const& _contractName) const;
void useMetadataLiteralSources(bool _metadataLiteralSources) { m_metadataLiteralSources = _metadataLiteralSources; }