mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add __test experimental mode for testing
This commit is contained in:
@@ -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 },
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user