String ndesc = org.objectweb.asm.Type.getMethodDescriptor(org.objectweb.asm.Type.VOID_TYPE,
org.objectweb.asm.Type.getType(Value.class));
org.objectweb.asm.Type thisType = org.objectweb.asm.Type.getType("L" + javaClassName + ";");
MethodVisitor res = new CheckMethodAdapter(super.visitMethod(access, name, ndesc, null, exceptions));
GeneratorAdapter generator = new GeneratorAdapter(
res,
Opcodes.ASM5,
"<init>",
ndesc);