mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Make function grouper idempotent.
This commit is contained in:
@@ -33,6 +33,9 @@ using namespace dev::solidity;
|
||||
|
||||
void FunctionGrouper::operator()(Block& _block)
|
||||
{
|
||||
if (alreadyGrouped(_block))
|
||||
return;
|
||||
|
||||
vector<Statement> reordered;
|
||||
reordered.emplace_back(Block{_block.location, {}});
|
||||
|
||||
@@ -45,3 +48,15 @@ void FunctionGrouper::operator()(Block& _block)
|
||||
}
|
||||
_block.statements = std::move(reordered);
|
||||
}
|
||||
|
||||
bool FunctionGrouper::alreadyGrouped(Block const& _block)
|
||||
{
|
||||
if (_block.statements.empty())
|
||||
return false;
|
||||
if (_block.statements.front().type() != typeid(Block))
|
||||
return false;
|
||||
for (size_t i = 1; i < _block.statements.size(); ++i)
|
||||
if (_block.statements.at(i).type() != typeid(FunctionDefinition))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user