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