// name of the method which is searched
mv.visitLdcInsn(this.jMethod.getName());
// build an array of java.lang.Class with the size of args of the method
mv.visitIntInsn(BIPUSH, this.methodArgsType.length);
mv.visitTypeInsn(ANEWARRAY, "java/lang/Class");
int argCount = 0;
for (Type type : this.methodArgsType) {
mv.visitInsn(DUP);
mv.visitIntInsn(BIPUSH, argCount);