Class: Wardite::FunctionSection

Inherits:
Section
  • Object
show all
Defined in:
lib/wardite.rb

Instance Attribute Summary collapse

Attributes inherited from Section

#code, #name, #size

Instance Method Summary collapse

Constructor Details

#initializeFunctionSection

Returns a new instance of FunctionSection.



53
54
55
56
57
58
# File 'lib/wardite.rb', line 53

def initialize
  self.name = "Function"
  self.code = 0x3

  @func_indices = []
end

Instance Attribute Details

#func_indicesObject

: Array



50
51
52
# File 'lib/wardite.rb', line 50

def func_indices
  @func_indices
end