class MachO::LoadCommands::FvmfileCommand

An obsolete load command containing the path to a file to be loaded into memory. Corresponds to LC_FVMFILE.

Public Instance Methods

to_h() click to toggle source

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

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 1393
def to_h
  {
    "name" => name.to_h,
    "header_addr" => header_addr,
  }.merge super
end