Merge pull request #6136 from ethereum/yul-break-continue

[Yul] introduce break/continue keywords.
This commit is contained in:
Christian Parpart
2019-03-11 20:38:57 +01:00
committed by GitHub
24 changed files with 277 additions and 10 deletions
+6
View File
@@ -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)