}
@Override
public void visitCall(GimpleCall call) {
try {
CallTranslator translator = context.getTranslationContext().getCallTranslator(call);
translator.writeCall(context, call);
} catch(Exception e) {
throw new TranslationException("Exception thrown while translating call " + call, e);
}
}