class Pliney::MachO::SectionReader

Public Instance Methods

parse() click to toggle source
# File lib/pliney/macho.rb, line 391
def parse()
    super()
    @addr = @fh.read_uint32le
    @size = @fh.read_uint32le
    @offset = @fh.read_uint32le
    @align = @fh.read_uint32le
    @reloff = @fh.read_uint32le
    @nreloc = @fh.read_uint32le
    @flags = @fh.read_uint32le
    @_reserved1 = @fh.read_uint32le
    @_reserved2 = @fh.read_uint32le
end