mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
@@ -91,7 +91,7 @@ Expression ASTCopier::operator()(FunctionalInstruction const& _instruction)
|
||||
|
||||
Expression ASTCopier::operator()(Identifier const& _identifier)
|
||||
{
|
||||
return Identifier{_identifier.location, translateIdentifier(_identifier.name)};
|
||||
return translate(_identifier);
|
||||
}
|
||||
|
||||
Expression ASTCopier::operator()(Literal const& _literal)
|
||||
|
||||
@@ -104,7 +104,7 @@ protected:
|
||||
|
||||
Block translate(Block const& _block);
|
||||
Case translate(Case const& _case);
|
||||
Identifier translate(Identifier const& _identifier);
|
||||
virtual Identifier translate(Identifier const& _identifier);
|
||||
Literal translate(Literal const& _literal);
|
||||
TypedName translate(TypedName const& _typedName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user