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.
4803 4804 4805 4806 4807 4808 |
# File 'lib/packcr/parser.rb', line 4803 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.
4801 4802 4803 |
# File 'lib/packcr/parser.rb', line 4801 def answer @answer end |
#fail ⇒ Object
Returns the value of attribute fail.
4801 4802 4803 |
# File 'lib/packcr/parser.rb', line 4801 def fail @fail end |
#grow ⇒ Object
Returns the value of attribute grow.
4801 4802 4803 |
# File 'lib/packcr/parser.rb', line 4801 def grow @grow end |
#offset ⇒ Object
Returns the value of attribute offset.
4801 4802 4803 |
# File 'lib/packcr/parser.rb', line 4801 def offset @offset end |
#offset_loc ⇒ Object
Returns the value of attribute offset_loc.
4801 4802 4803 |
# File 'lib/packcr/parser.rb', line 4801 def offset_loc @offset_loc end |