I am currently trying to understand how the ASM library works. I've decided to try to rename all the methods of a given class, so I wrote a mini MethodRenamer visitor:
class MethodRenamer extends ClassAdapter {
public MethodRenamer(ClassVisitor cv) {
super(cv);
}
@Override
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
MethodVisitor methodVisitor = cv.visitMethod(access, name+"_new", desc, signature, exceptions);
return methodVisitor;
}
}
It actually does me the full job, but I can't understand why. I thought that with the given code it would only, for each method m, create a m_new method, empty of code. But contrary to my expectation, it somehow fills each m_new with the original code.
How can this happen? I had the idea that only what I forward to cv would be written in the output file. I am not telling cv in any place what the code of the original m code is..so I guess there must be something else going on here? The only other viable option seems to be that it is using my returned methodVisitor in some way.