Class: Stupidedi::Builder::IdentifierStack::HL
- Defined in:
- lib/stupidedi/builder/identifier_stack.rb
Instance Attribute Summary collapse
-
#sequence ⇒ Object
writeonly
Sets the attribute sequence.
Instance Method Summary collapse
- #hl ⇒ Object
- #id ⇒ Object
-
#initialize(parent, id) ⇒ HL
constructor
A new instance of HL.
-
#parent ⇒ Object
Parent HL number.
- #pop ⇒ Object
Constructor Details
#initialize(parent, id) ⇒ HL
Returns a new instance of HL.
139 140 141 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 139 def initialize(parent, id) @parent, @id, @sequence = parent, id, id end |
Instance Attribute Details
#sequence=(value) ⇒ Object (writeonly)
Sets the attribute sequence
137 138 139 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 137 def sequence=(value) @sequence = value end |
Instance Method Details
#hl ⇒ Object
143 144 145 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 143 def hl HL.new(self, @sequence += 1) end |
#id ⇒ Object
147 148 149 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 147 def id @id.to_s end |
#parent ⇒ Object
Parent HL number
152 153 154 155 156 157 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 152 def parent case @parent when HL @parent.id end end |
#pop ⇒ Object
159 160 161 162 |
# File 'lib/stupidedi/builder/identifier_stack.rb', line 159 def pop @parent.sequence = @sequence @parent end |