[isoltest] Remove storage command left overs.

This commit is contained in:
Alexander Arlt 2021-05-24 08:36:46 -05:00
parent 29c8f282e4
commit 66099fe938
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};
};