class MachO::LoadCommands::NoteCommand

A load command containing an owner name and offset/size for an arbitrary data region. Corresponds to LC_NOTE.

Public Instance Methods

to_h() click to toggle source

@return [Hash] a hash representation of this {NoteCommand}

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 1436
def to_h
  {
    "data_owner" => data_owner,
    "offset" => offset,
    "size" => size,
  }.merge super
end