mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #3932 from ethereum/betterErrorForFailedLookup
Better error for failed lookup
This commit is contained in:
commit
6407f1f7bb
@ -6,6 +6,7 @@ Features:
|
|||||||
* Syntax Checker: Warn about functions named "constructor".
|
* Syntax Checker: Warn about functions named "constructor".
|
||||||
|
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
* Type Checker: Improve error message for failed function overload resolution.
|
||||||
* Type Checker: Do not complain about new-style constructor and fallback function to have the same name.
|
* Type Checker: Do not complain about new-style constructor and fallback function to have the same name.
|
||||||
* Type Checker: Detect multiple constructor declarations in the new syntax and old syntax.
|
* Type Checker: Detect multiple constructor declarations in the new syntax and old syntax.
|
||||||
|
|
||||||
|
@ -1904,7 +1904,8 @@ bool TypeChecker::visit(MemberAccess const& _memberAccess)
|
|||||||
// Retrieve the types of the arguments if this is used to call a function.
|
// Retrieve the types of the arguments if this is used to call a function.
|
||||||
auto const& argumentTypes = _memberAccess.annotation().argumentTypes;
|
auto const& argumentTypes = _memberAccess.annotation().argumentTypes;
|
||||||
MemberList::MemberMap possibleMembers = exprType->members(m_scope).membersByName(memberName);
|
MemberList::MemberMap possibleMembers = exprType->members(m_scope).membersByName(memberName);
|
||||||
if (possibleMembers.size() > 1 && argumentTypes)
|
size_t const initialMemberCount = possibleMembers.size();
|
||||||
|
if (initialMemberCount > 1 && argumentTypes)
|
||||||
{
|
{
|
||||||
// do overload resolution
|
// do overload resolution
|
||||||
for (auto it = possibleMembers.begin(); it != possibleMembers.end();)
|
for (auto it = possibleMembers.begin(); it != possibleMembers.end();)
|
||||||
@ -1918,17 +1919,21 @@ bool TypeChecker::visit(MemberAccess const& _memberAccess)
|
|||||||
}
|
}
|
||||||
if (possibleMembers.size() == 0)
|
if (possibleMembers.size() == 0)
|
||||||
{
|
{
|
||||||
auto storageType = ReferenceType::copyForLocationIfReference(
|
if (initialMemberCount == 0)
|
||||||
DataLocation::Storage,
|
{
|
||||||
exprType
|
// Try to see if the member was removed because it is only available for storage types.
|
||||||
);
|
auto storageType = ReferenceType::copyForLocationIfReference(
|
||||||
if (!storageType->members(m_scope).membersByName(memberName).empty())
|
DataLocation::Storage,
|
||||||
m_errorReporter.fatalTypeError(
|
exprType
|
||||||
_memberAccess.location(),
|
|
||||||
"Member \"" + memberName + "\" is not available in " +
|
|
||||||
exprType->toString() +
|
|
||||||
" outside of storage."
|
|
||||||
);
|
);
|
||||||
|
if (!storageType->members(m_scope).membersByName(memberName).empty())
|
||||||
|
m_errorReporter.fatalTypeError(
|
||||||
|
_memberAccess.location(),
|
||||||
|
"Member \"" + memberName + "\" is not available in " +
|
||||||
|
exprType->toString() +
|
||||||
|
" outside of storage."
|
||||||
|
);
|
||||||
|
}
|
||||||
m_errorReporter.fatalTypeError(
|
m_errorReporter.fatalTypeError(
|
||||||
_memberAccess.location(),
|
_memberAccess.location(),
|
||||||
"Member \"" + memberName + "\" not found or not visible "
|
"Member \"" + memberName + "\" not found or not visible "
|
||||||
|
@ -2993,21 +2993,6 @@ BOOST_AUTO_TEST_CASE(literal_strings)
|
|||||||
CHECK_SUCCESS(text);
|
CHECK_SUCCESS(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(memory_structs_with_mappings)
|
|
||||||
{
|
|
||||||
char const* text = R"(
|
|
||||||
contract Test {
|
|
||||||
struct S { uint8 a; mapping(uint => uint) b; uint8 c; }
|
|
||||||
S s;
|
|
||||||
function f() public {
|
|
||||||
S memory x;
|
|
||||||
x.b[1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)";
|
|
||||||
CHECK_ERROR(text, TypeError, "Member \"b\" is not available in struct Test.S memory outside of storage.");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(string_bytes_conversion)
|
BOOST_AUTO_TEST_CASE(string_bytes_conversion)
|
||||||
{
|
{
|
||||||
char const* text = R"(
|
char const* text = R"(
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
contract C {
|
||||||
|
function f(uint, uint) {}
|
||||||
|
function f(uint) {}
|
||||||
|
function g() { f(1, 2, 3); }
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError: (80-81): No matching declaration found after argument-dependent lookup.
|
@ -0,0 +1,9 @@
|
|||||||
|
library L {
|
||||||
|
function f(uint, uint) {}
|
||||||
|
function f(uint) {}
|
||||||
|
}
|
||||||
|
contract C {
|
||||||
|
function g() { L.f(1, 2, 3); }
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError: (94-97): Member "f" not found or not visible after argument-dependent lookup in type(library L)
|
@ -0,0 +1,10 @@
|
|||||||
|
contract Test {
|
||||||
|
struct S { uint8 a; mapping(uint => uint) b; uint8 c; }
|
||||||
|
S s;
|
||||||
|
function f() public {
|
||||||
|
S memory x;
|
||||||
|
x.b[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError: (118-121): Member "b" is not available in struct Test.S memory outside of storage.
|
@ -0,0 +1,8 @@
|
|||||||
|
contract Test {
|
||||||
|
function f() public pure {
|
||||||
|
uint[] memory x;
|
||||||
|
x.push(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// TypeError: (77-83): Member "push" is not available in uint256[] memory outside of storage.
|
Loading…
Reference in New Issue
Block a user