mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Separate expression and statement.
This commit is contained in:
@@ -26,14 +26,14 @@ using namespace std;
|
||||
using namespace dev;
|
||||
using namespace dev::julia;
|
||||
|
||||
Statement Substitution::translate(Statement const& _statement)
|
||||
Expression Substitution::translate(Expression const& _expression)
|
||||
{
|
||||
if (_statement.type() == typeid(Identifier))
|
||||
if (_expression.type() == typeid(Identifier))
|
||||
{
|
||||
string const& name = boost::get<Identifier>(_statement).name;
|
||||
string const& name = boost::get<Identifier>(_expression).name;
|
||||
if (m_substitutions.count(name))
|
||||
// No recursive substitution
|
||||
return ASTCopier().translate(*m_substitutions.at(name));
|
||||
}
|
||||
return ASTCopier::translate(_statement);
|
||||
return ASTCopier::translate(_expression);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user