Class: MachO::DylinkerCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::DylinkerCommand
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, name) ⇒ DylinkerCommand
constructor
A new instance of DylinkerCommand.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, name) ⇒ DylinkerCommand
Returns a new instance of DylinkerCommand.
283 284 285 286 |
# File 'lib/macho/load_commands.rb', line 283 def initialize(offset, cmd, cmdsize, name) super(offset, cmd, cmdsize) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
278 279 280 |
# File 'lib/macho/load_commands.rb', line 278 def name @name end |