mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
If statement for Iulia / inline assembly.
This commit is contained in:
@@ -72,6 +72,11 @@ public:
|
||||
for (auto const& arg: _funCall.arguments)
|
||||
boost::apply_visitor(*this, arg);
|
||||
}
|
||||
void operator()(assembly::If const& _if)
|
||||
{
|
||||
boost::apply_visitor(*this, *_if.condition);
|
||||
(*this)(_if.body);
|
||||
}
|
||||
void operator()(assembly::Switch const& _switch)
|
||||
{
|
||||
boost::apply_visitor(*this, *_switch.expression);
|
||||
|
||||
Reference in New Issue
Block a user