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.



40
41
42
43
44
45
# File 'lib/wardite.rb', line 40

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

  @func_indices = []
end

Instance Attribute Details

#func_indicesObject

: Array



37
38
39
# File 'lib/wardite.rb', line 37

def func_indices
  @func_indices
end