mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #6136 from ethereum/yul-break-continue
[Yul] introduce break/continue keywords.
This commit is contained in:
@@ -94,6 +94,12 @@ public:
|
||||
(*this)(_for.body);
|
||||
(*this)(_for.post);
|
||||
}
|
||||
void operator()(yul::Break const&)
|
||||
{
|
||||
}
|
||||
void operator()(yul::Continue const&)
|
||||
{
|
||||
}
|
||||
void operator()(yul::Block const& _block)
|
||||
{
|
||||
for (auto const& s: _block.statements)
|
||||
|
||||
Reference in New Issue
Block a user