Name displacer.

This commit is contained in:
chriseth
2019-06-19 14:55:38 +02:00
parent ee89a0353e
commit d7b366ff46
12 changed files with 246 additions and 4 deletions
+2
View File
@@ -35,6 +35,7 @@ void ASTWalker::operator()(FunctionalInstruction const& _instr)
void ASTWalker::operator()(FunctionCall const& _funCall)
{
// Does not visit _funCall.functionName on purpose
walkVector(_funCall.arguments | boost::adaptors::reversed);
}
@@ -108,6 +109,7 @@ void ASTModifier::operator()(FunctionalInstruction& _instr)
void ASTModifier::operator()(FunctionCall& _funCall)
{
// Does not visit _funCall.functionName on purpose
walkVector(_funCall.arguments | boost::adaptors::reversed);
}