44454647484950
protected JCode(FJBGContext context, JClass clazz, JMethod owner) { this.context = context; this.pool = clazz.getConstantPool(); this.owner = owner; this.codeArray = new ByteArray(); }
59606162636465
this.owner = owner; owner.setCode(this); int size = stream.readInt(); if (size > MAX_CODE_SIZE) // section 4.10 throw new Error("code size must be less than " + MAX_CODE_SIZE + ": " + size); this.codeArray = new ByteArray(stream, size); }