mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Visit case bodies in scope filler
This commit is contained in:
parent
0c5c1ca911
commit
d745dd6542
@ -97,6 +97,15 @@ bool ScopeFiller::operator()(assembly::FunctionDefinition const& _funDef)
|
||||
return success;
|
||||
}
|
||||
|
||||
bool ScopeFiller::operator()(Switch const& _switch)
|
||||
{
|
||||
bool success = true;
|
||||
for (auto const& _case: _switch.cases)
|
||||
if (!(*this)(_case.body))
|
||||
success = false;
|
||||
return success;
|
||||
}
|
||||
|
||||
bool ScopeFiller::operator()(Block const& _block)
|
||||
{
|
||||
bool success = true;
|
||||
|
@ -70,7 +70,7 @@ public:
|
||||
bool operator()(assembly::VariableDeclaration const& _variableDeclaration);
|
||||
bool operator()(assembly::FunctionDefinition const& _functionDefinition);
|
||||
bool operator()(assembly::FunctionCall const&) { return true; }
|
||||
bool operator()(assembly::Switch const&) { return true; };
|
||||
bool operator()(assembly::Switch const& _switch);
|
||||
bool operator()(assembly::Block const& _block);
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user