class Metasm::DEX::AnnotationSetItem

Attributes

list[RW]

Public Instance Methods

decode(exe) click to toggle source
Calls superclass method Metasm::SerialStruct#decode
# File metasm/exe_format/dex.rb, line 313
def decode(exe)
        super(exe)
        @list = (1..@sz).map { AnnotationItem.decode(exe) }
end