mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Allow data location suffix for internal elementary type parsing
This commit is contained in:
parent
e97f9b6ba8
commit
9865012f7b
@ -33,6 +33,8 @@
|
|||||||
#include <boost/algorithm/string/join.hpp>
|
#include <boost/algorithm/string/join.hpp>
|
||||||
#include <boost/algorithm/string/replace.hpp>
|
#include <boost/algorithm/string/replace.hpp>
|
||||||
#include <boost/algorithm/string/predicate.hpp>
|
#include <boost/algorithm/string/predicate.hpp>
|
||||||
|
#include <boost/algorithm/string/classification.hpp>
|
||||||
|
#include <boost/algorithm/string/split.hpp>
|
||||||
#include <boost/range/adaptor/reversed.hpp>
|
#include <boost/range/adaptor/reversed.hpp>
|
||||||
#include <boost/range/algorithm/copy.hpp>
|
#include <boost/range/algorithm/copy.hpp>
|
||||||
#include <boost/range/adaptor/sliced.hpp>
|
#include <boost/range/adaptor/sliced.hpp>
|
||||||
@ -312,23 +314,35 @@ TypePointer Type::fromElementaryTypeName(ElementaryTypeNameToken const& _type)
|
|||||||
|
|
||||||
TypePointer Type::fromElementaryTypeName(string const& _name)
|
TypePointer Type::fromElementaryTypeName(string const& _name)
|
||||||
{
|
{
|
||||||
string name = _name;
|
vector<string> nameParts;
|
||||||
DataLocation location = DataLocation::Storage;
|
boost::split(nameParts, _name, boost::is_any_of(" "));
|
||||||
if (boost::algorithm::ends_with(name, " memory"))
|
solAssert(nameParts.size() == 1 || nameParts.size() == 2, "Cannot parse elementary type: " + _name);
|
||||||
{
|
|
||||||
name = name.substr(0, name.length() - 7);
|
|
||||||
location = DataLocation::Memory;
|
|
||||||
}
|
|
||||||
unsigned short firstNum;
|
|
||||||
unsigned short secondNum;
|
|
||||||
Token::Value token;
|
Token::Value token;
|
||||||
tie(token, firstNum, secondNum) = Token::fromIdentifierOrKeyword(name);
|
unsigned short firstNum, secondNum;
|
||||||
|
tie(token, firstNum, secondNum) = Token::fromIdentifierOrKeyword(nameParts[0]);
|
||||||
auto t = fromElementaryTypeName(ElementaryTypeNameToken(token, firstNum, secondNum));
|
auto t = fromElementaryTypeName(ElementaryTypeNameToken(token, firstNum, secondNum));
|
||||||
if (auto* ref = dynamic_cast<ReferenceType const*>(t.get()))
|
if (auto* ref = dynamic_cast<ReferenceType const*>(t.get()))
|
||||||
return ref->copyForLocation(location, true);
|
{
|
||||||
|
DataLocation location = DataLocation::Storage;
|
||||||
|
if (nameParts.size() == 2)
|
||||||
|
{
|
||||||
|
if (nameParts[1] == "storage")
|
||||||
|
location = DataLocation::Storage;
|
||||||
|
else if (nameParts[1] == "calldata")
|
||||||
|
location = DataLocation::CallData;
|
||||||
|
else if (nameParts[1] == "memory")
|
||||||
|
location = DataLocation::Memory;
|
||||||
else
|
else
|
||||||
|
solAssert(false, "Unknown data location: " + nameParts[1]);
|
||||||
|
}
|
||||||
|
return ref->copyForLocation(location, true);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
solAssert(nameParts.size() == 1, "Storage location suffix only allowed for reference types");
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
TypePointer Type::forLiteral(Literal const& _literal)
|
TypePointer Type::forLiteral(Literal const& _literal)
|
||||||
{
|
{
|
||||||
|
@ -151,7 +151,8 @@ public:
|
|||||||
/// @name Factory functions
|
/// @name Factory functions
|
||||||
/// Factory functions that convert an AST @ref TypeName to a Type.
|
/// Factory functions that convert an AST @ref TypeName to a Type.
|
||||||
static TypePointer fromElementaryTypeName(ElementaryTypeNameToken const& _type);
|
static TypePointer fromElementaryTypeName(ElementaryTypeNameToken const& _type);
|
||||||
/// Converts a given elementary type name with optional suffix " memory" to a type pointer.
|
/// Converts a given elementary type name with optional data location
|
||||||
|
/// suffix " storage", " calldata" or " memory" to a type pointer. If suffix not given, defaults to " storage".
|
||||||
static TypePointer fromElementaryTypeName(std::string const& _name);
|
static TypePointer fromElementaryTypeName(std::string const& _name);
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user