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.
18 19 20 21 22 23 24 |
# File 'lib/wardite/load.rb', line 18 def initialize self.name = "Type" self.code = 0x1 @defined_types = [] @defined_results = [] end |
Instance Attribute Details
#defined_results ⇒ Object
: Array[Array]
15 16 17 |
# File 'lib/wardite/load.rb', line 15 def defined_results @defined_results end |
#defined_types ⇒ Object
: Array[Array]
13 14 15 |
# File 'lib/wardite/load.rb', line 13 def defined_types @defined_types end |