aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/ast/ExperimentalFeatures.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/ast/ExperimentalFeatures.h')
-rw-r--r--libsolidity/ast/ExperimentalFeatures.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/libsolidity/ast/ExperimentalFeatures.h b/libsolidity/ast/ExperimentalFeatures.h
index 04b26300..0c03ea4a 100644
--- a/libsolidity/ast/ExperimentalFeatures.h
+++ b/libsolidity/ast/ExperimentalFeatures.h
@@ -29,15 +29,19 @@ namespace solidity
enum class ExperimentalFeature
{
+ ABIEncoderV2, // new ABI encoder that makes use of JULIA
Test,
TestOnlyAnalysis
};
-static const std::map<ExperimentalFeature, bool> ExperimentalFeatureOnlyAnalysis = {
+static const std::map<ExperimentalFeature, bool> ExperimentalFeatureOnlyAnalysis =
+{
{ ExperimentalFeature::TestOnlyAnalysis, true },
};
-static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames = {
+static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames =
+{
+ { "ABIEncoderV2", ExperimentalFeature::ABIEncoderV2 },
{ "__test", ExperimentalFeature::Test },
{ "__testOnlyAnalysis", ExperimentalFeature::TestOnlyAnalysis },
};