class JavaClass::ClassFile::Constants::ConstantMethodHandle

Public Class Methods

new(pool, data, start) click to toggle source
# File lib/javaclass/classfile/constants/single_reference.rb, line 74
def initialize(pool, data, start)
  super(pool, data, start)
  
  @kind = data.u1(start+1)
  @first_index = data.u2(start+2)
  @size = 4
end