class MachO::LoadCommands::SymtabCommand

A load command containing the offsets and sizes of the link-edit 4.3BSD “stab” style symbol table information. Corresponds to LC_SYMTAB.

Public Instance Methods

to_h() click to toggle source

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

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 857
def to_h
  {
    "symoff" => symoff,
    "nsyms" => nsyms,
    "stroff" => stroff,
    "strsize" => strsize,
  }.merge super
end