Class: Wardite::TypeSection
Instance Attribute Summary collapse
Attributes inherited from Section
Instance Method Summary collapse
-
#initialize ⇒ TypeSection
constructor
A new instance of TypeSection.
Constructor Details
#initialize ⇒ TypeSection
Returns a new instance of TypeSection.
17 18 19 20 21 22 23 |
# File 'lib/wardite/load.rb', line 17 def initialize self.name = "Type" self.code = 0x1 @defined_types = [] @defined_results = [] end |
Instance Attribute Details
#defined_results ⇒ Object
: Array[Array]
14 15 16 |
# File 'lib/wardite/load.rb', line 14 def defined_results @defined_results end |
#defined_types ⇒ Object
: Array[Array]
12 13 14 |
# File 'lib/wardite/load.rb', line 12 def defined_types @defined_types end |