mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Search for shadowee starting from parent scope.
This commit is contained in:
@@ -439,23 +439,6 @@ DeclarationRegistrationHelper::DeclarationRegistrationHelper(
|
||||
solAssert(m_currentScope == _currentScope, "Scopes not correctly closed.");
|
||||
}
|
||||
|
||||
bool DeclarationRegistrationHelper::isOverloadedFunction(
|
||||
Declaration const& _declaration1,
|
||||
Declaration const& _declaration2
|
||||
)
|
||||
{
|
||||
auto const* function1 = dynamic_cast<FunctionDefinition const*>(&_declaration1);
|
||||
auto const* function2 = dynamic_cast<FunctionDefinition const*>(&_declaration2);
|
||||
|
||||
if (!function1 || !function2)
|
||||
return false;
|
||||
|
||||
if (function1->parameters() != function2->parameters())
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool DeclarationRegistrationHelper::registerDeclaration(
|
||||
DeclarationContainer& _container,
|
||||
Declaration const& _declaration,
|
||||
@@ -469,13 +452,9 @@ bool DeclarationRegistrationHelper::registerDeclaration(
|
||||
_errorLocation = &_declaration.location();
|
||||
|
||||
Declaration const* shadowedDeclaration = nullptr;
|
||||
if (_warnOnShadow && !_declaration.name().empty())
|
||||
for (auto const* decl: _container.resolveName(_declaration.name(), true))
|
||||
if (decl != &_declaration && !isOverloadedFunction(*decl, _declaration))
|
||||
{
|
||||
shadowedDeclaration = decl;
|
||||
break;
|
||||
}
|
||||
if (_warnOnShadow && !_declaration.name().empty() && _container.enclosingContainer())
|
||||
for (auto const* decl: _container.enclosingContainer()->resolveName(_declaration.name(), true))
|
||||
shadowedDeclaration = decl;
|
||||
|
||||
if (!_container.registerDeclaration(_declaration, _name, !_declaration.isVisibleInContract()))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user