diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-12 07:21:54 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-14 02:22:03 +0800 |
commit | 06c2ddfd5017b310f5de732a0132491d236f8359 (patch) | |
tree | c94d4618ba92fa096991916a6be1c3f0b0d67121 /libsolidity/ast/ExperimentalFeatures.h | |
parent | bc5306863dc13697add91de9a52521a9abf3adb8 (diff) | |
download | dexon-solidity-06c2ddfd5017b310f5de732a0132491d236f8359.tar.gz dexon-solidity-06c2ddfd5017b310f5de732a0132491d236f8359.tar.zst dexon-solidity-06c2ddfd5017b310f5de732a0132491d236f8359.zip |
Add experimental feature 'v0.5.0'
Diffstat (limited to 'libsolidity/ast/ExperimentalFeatures.h')
-rw-r--r-- | libsolidity/ast/ExperimentalFeatures.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/ast/ExperimentalFeatures.h b/libsolidity/ast/ExperimentalFeatures.h index 2c089671..3ecfac7b 100644 --- a/libsolidity/ast/ExperimentalFeatures.h +++ b/libsolidity/ast/ExperimentalFeatures.h @@ -31,6 +31,7 @@ enum class ExperimentalFeature { SMTChecker, ABIEncoderV2, // new ABI encoder that makes use of JULIA + V050, // v0.5.0 breaking changes Test, TestOnlyAnalysis }; @@ -45,6 +46,7 @@ static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames { { "SMTChecker", ExperimentalFeature::SMTChecker }, { "ABIEncoderV2", ExperimentalFeature::ABIEncoderV2 }, + { "v0.5.0", ExperimentalFeature::V050 }, { "__test", ExperimentalFeature::Test }, { "__testOnlyAnalysis", ExperimentalFeature::TestOnlyAnalysis }, }; |