class Metasm::DEY

Attributes

fullencoded[RW]
optheader[RW]

Public Instance Methods

decode_header() click to toggle source
Calls superclass method Metasm::DEX#decode_header
# File metasm/exe_format/dex.rb, line 458
def decode_header
        @optheader = OptHeader.decode(self)
        @fullencoded = @encoded
        @encoded = @fullencoded[@optheader.dexoff, @optheader.dexsz]
        super
end