diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-28 03:55:55 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-28 04:52:57 +0800 |
commit | 9fc6eccc26eea6f5a70f2960df9d53d49392151e (patch) | |
tree | 8dd67fc01a6abaecffbac1d100fe550c8e088616 /libsolidity/interface/CompilerStack.cpp | |
parent | 53f747b7ded3610802582448257b25e87442bebb (diff) | |
download | dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.gz dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.bz2 dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.lz dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.xz dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.zst dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.zip |
Add isFallback() helper
Diffstat (limited to 'libsolidity/interface/CompilerStack.cpp')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index 02983a82..9689b700 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -935,7 +935,7 @@ Json::Value CompilerStack::gasEstimates(string const& _contractName) const for (auto const& it: contract.definedFunctions()) { /// Exclude externally visible functions, constructor and the fallback function - if (it->isPartOfExternalInterface() || it->isConstructor() || it->name().empty()) + if (it->isPartOfExternalInterface() || it->isConstructor() || it->isFallback()) continue; size_t entry = functionEntryPoint(_contractName, *it); @@ -943,12 +943,14 @@ Json::Value CompilerStack::gasEstimates(string const& _contractName) const if (entry > 0) gas = GasEstimator::functionalEstimation(*items, entry, *it); + /// TODO: This could move into a method shared with externalSignature() FunctionType type(*it); string sig = it->name() + "("; auto paramTypes = type.parameterTypes(); for (auto it = paramTypes.begin(); it != paramTypes.end(); ++it) sig += (*it)->toString() + (it + 1 == paramTypes.end() ? "" : ","); sig += ")"; + internalFunctions[sig] = gasToJson(gas); } |