Class: Packcr::Parser::LrMemo
- Inherits:
-
Object
- Object
- Packcr::Parser::LrMemo
- Defined in:
- lib/packcr/parser.rb
Instance Attribute Summary collapse
-
#answer ⇒ Object
Returns the value of attribute answer.
-
#fail ⇒ Object
Returns the value of attribute fail.
-
#grow ⇒ Object
Returns the value of attribute grow.
-
#offset ⇒ Object
Returns the value of attribute offset.
-
#offset_loc ⇒ Object
Returns the value of attribute offset_loc.
Instance Method Summary collapse
-
#initialize(offset, offset_loc) ⇒ LrMemo
constructor
A new instance of LrMemo.
Constructor Details
#initialize(offset, offset_loc) ⇒ LrMemo
Returns a new instance of LrMemo.
4797 4798 4799 4800 4801 4802 |
# File 'lib/packcr/parser.rb', line 4797 def initialize(offset, offset_loc) @offset = offset @offset_loc = offset_loc @fail = true @grow = false end |
Instance Attribute Details
#answer ⇒ Object
Returns the value of attribute answer.
4795 4796 4797 |
# File 'lib/packcr/parser.rb', line 4795 def answer @answer end |
#fail ⇒ Object
Returns the value of attribute fail.
4795 4796 4797 |
# File 'lib/packcr/parser.rb', line 4795 def fail @fail end |
#grow ⇒ Object
Returns the value of attribute grow.
4795 4796 4797 |
# File 'lib/packcr/parser.rb', line 4795 def grow @grow end |
#offset ⇒ Object
Returns the value of attribute offset.
4795 4796 4797 |
# File 'lib/packcr/parser.rb', line 4795 def offset @offset end |
#offset_loc ⇒ Object
Returns the value of attribute offset_loc.
4795 4796 4797 |
# File 'lib/packcr/parser.rb', line 4795 def offset_loc @offset_loc end |