@Deprecated
private String getAnnotatedMethodForIndex(ClassWriter cw, Method method, int index, String superClass) {
String methodName = "call" + index + "_" + method.getName();
SkinnyMethodAdapter mv = new SkinnyMethodAdapter(cw.visitMethod(ACC_PUBLIC, methodName, COMPILED_CALL_SIG_BLOCK, null, null));
mv.visitCode();
Label line = new Label();
mv.visitLineNumber(0, line);
// TODO: indexed methods do not use specific arity yet
createAnnotatedMethodInvocation(new JavaMethodDescriptor(method), mv, superClass, -1, true);
endMethod(mv);