Merge pull request #11434 from ethereum/isoltest_remove_storage_leftover

[isoltest] Remove storage command left overs.
This commit is contained in:
Alex Beregszaszi 2021-05-24 21:39:10 +01:00 committed by GitHub
commit c5031799fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -59,7 +59,6 @@ namespace solidity::frontend::test
K(Library, "library", 0) \
K(Right, "right", 0) \
K(Failure, "FAILURE", 0) \
K(Storage, "storage", 0) \
K(Gas, "gas", 0) \
namespace soltest

View File

@ -512,7 +512,6 @@ void TestFileParser::Scanner::scanNextToken()
if (_literal == "right") return {Token::Right, ""};
if (_literal == "hex") return {Token::Hex, ""};
if (_literal == "FAILURE") return {Token::Failure, ""};
if (_literal == "storage") return {Token::Storage, ""};
if (_literal == "gas") return {Token::Gas, ""};
return {Token::Identifier, _literal};
};