diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-27 09:10:24 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-27 09:10:24 +0800 |
commit | 5c0d82059f50cb6ac67171ca075f394acae27228 (patch) | |
tree | c0a81bfc65d3a991ddced5a954a5c6a63b6f39f3 /libsolidity/analysis | |
parent | 1f5eb4ba59891387c2dfcc10103c2f187bf2b4ee (diff) | |
download | dexon-solidity-5c0d82059f50cb6ac67171ca075f394acae27228.tar.gz dexon-solidity-5c0d82059f50cb6ac67171ca075f394acae27228.tar.zst dexon-solidity-5c0d82059f50cb6ac67171ca075f394acae27228.zip |
Turn throw into a syntax error for 0.5.0
Diffstat (limited to 'libsolidity/analysis')
-rw-r--r-- | libsolidity/analysis/SyntaxChecker.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/libsolidity/analysis/SyntaxChecker.cpp b/libsolidity/analysis/SyntaxChecker.cpp index 74834ba4..1dcfeb27 100644 --- a/libsolidity/analysis/SyntaxChecker.cpp +++ b/libsolidity/analysis/SyntaxChecker.cpp @@ -174,10 +174,18 @@ bool SyntaxChecker::visit(Break const& _breakStatement) bool SyntaxChecker::visit(Throw const& _throwStatement) { - m_errorReporter.warning( - _throwStatement.location(), - "\"throw\" is deprecated in favour of \"revert()\", \"require()\" and \"assert()\"." - ); + bool const v050 = m_sourceUnit->annotation().experimentalFeatures.count(ExperimentalFeature::V050); + + if (v050) + m_errorReporter.syntaxError( + _throwStatement.location(), + "\"throw\" is deprecated in favour of \"revert()\", \"require()\" and \"assert()\"." + ); + else + m_errorReporter.warning( + _throwStatement.location(), + "\"throw\" is deprecated in favour of \"revert()\", \"require()\" and \"assert()\"." + ); return true; } |