Add __test experimental mode for testing

This commit is contained in:
Alex Beregszaszi
2017-08-11 16:38:02 +01:00
parent a7a9ed4718
commit 644c91fc2d
2 changed files with 13 additions and 9 deletions
+6 -2
View File
@@ -27,9 +27,13 @@ namespace dev
namespace solidity
{
enum class ExperimentalFeature {};
enum class ExperimentalFeature {
Test
};
static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames = {};
static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames = {
{ "__test", ExperimentalFeature::Test },
};
}
}