experimental flag

This commit is contained in:
Alex Beregszaszi
2022-06-27 00:52:09 +02:00
parent 3ed9a38abc
commit e0727076d3
4 changed files with 19 additions and 9 deletions
+2
View File
@@ -31,6 +31,7 @@ enum class ExperimentalFeature
{
ABIEncoderV2, // new ABI encoder that makes use of Yul
SMTChecker,
Stdlib,
Test,
TestOnlyAnalysis
};
@@ -46,6 +47,7 @@ static std::map<std::string, ExperimentalFeature> const ExperimentalFeatureNames
{
{ "ABIEncoderV2", ExperimentalFeature::ABIEncoderV2 },
{ "SMTChecker", ExperimentalFeature::SMTChecker },
{ "stdlib", ExperimentalFeature::Stdlib },
{ "__test", ExperimentalFeature::Test },
{ "__testOnlyAnalysis", ExperimentalFeature::TestOnlyAnalysis },
};