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.
36 37 38 39 40 41 42 |
# File 'lib/wardite.rb', line 36 def initialize self.name = "Type" self.code = 0x1 @defined_types = [] @defined_results = [] end |
Instance Attribute Details
#defined_results ⇒ Object
: Array[Array]
33 34 35 |
# File 'lib/wardite.rb', line 33 def defined_results @defined_results end |
#defined_types ⇒ Object
: Array[Array]
31 32 33 |
# File 'lib/wardite.rb', line 31 def defined_types @defined_types end |