aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-07-01 03:39:20 +0800
committerGitHub <noreply@github.com>2017-07-01 03:39:20 +0800
commit95f790295564997705f455e3ed18b6c51546a847 (patch)
treef11230de1e0a8fc9da03b6d65f0c94bc21a0d2ea /libsolidity
parent4ca3b07e42ba6bb45c290aed7b6087c57f2cb242 (diff)
parent044058276ea27b3d43622b28416ad4dc41091a31 (diff)
downloaddexon-solidity-95f790295564997705f455e3ed18b6c51546a847.tar.gz
dexon-solidity-95f790295564997705f455e3ed18b6c51546a847.tar.zst
dexon-solidity-95f790295564997705f455e3ed18b6c51546a847.zip
Merge pull request #2491 from ethereum/warnAboutCallcode
Warn about callcode.
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/analysis/StaticAnalyzer.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/libsolidity/analysis/StaticAnalyzer.cpp b/libsolidity/analysis/StaticAnalyzer.cpp
index 375e9bde..b1b31163 100644
--- a/libsolidity/analysis/StaticAnalyzer.cpp
+++ b/libsolidity/analysis/StaticAnalyzer.cpp
@@ -123,6 +123,14 @@ bool StaticAnalyzer::visit(MemberAccess const& _memberAccess)
"\"msg.value\" used in non-payable function. Do you want to add the \"payable\" modifier to this function?"
);
+ if (_memberAccess.memberName() == "callcode")
+ if (auto const* type = dynamic_cast<FunctionType const*>(_memberAccess.annotation().type.get()))
+ if (type->kind() == FunctionType::Kind::BareCallCode)
+ m_errorReporter.warning(
+ _memberAccess.location(),
+ "\"callcode\" has been deprecated in favour of \"delegatecall\"."
+ );
+
return true;
}