aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-07-28 03:55:55 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-07-28 04:52:57 +0800
commit9fc6eccc26eea6f5a70f2960df9d53d49392151e (patch)
tree8dd67fc01a6abaecffbac1d100fe550c8e088616 /libsolidity/interface
parent53f747b7ded3610802582448257b25e87442bebb (diff)
downloaddexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.gz
dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.tar.zst
dexon-solidity-9fc6eccc26eea6f5a70f2960df9d53d49392151e.zip
Add isFallback() helper
Diffstat (limited to 'libsolidity/interface')
-rw-r--r--libsolidity/interface/CompilerStack.cpp4
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);
}