this.getExpression().appendToTranslatedExpression(translation);
}
public void handleDotOperation(String translation, Object node)
{
APropertyCallExpression propertyCallExpression = (APropertyCallExpression)node;
String firstArgument = ConcreteSyntaxUtils.getPrimaryExpression(propertyCallExpression);
translation = this.replaceFragment(translation, firstArgument, 0);
List featureCalls = ConcreteSyntaxUtils.getFeatureCalls(propertyCallExpression);
if (featureCalls != null && !featureCalls.isEmpty())
{