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.



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

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

  @func_indices = []
end

Instance Attribute Details

#func_indicesObject

: Array



46
47
48
# File 'lib/wardite.rb', line 46

def func_indices
  @func_indices
end