Class: Packcr::Parser::LrMemo

Inherits:
Object
  • Object
show all
Defined in:
lib/packcr/parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#answerObject

Returns the value of attribute answer.



4801
4802
4803
# File 'lib/packcr/parser.rb', line 4801

def answer
  @answer
end

#failObject

Returns the value of attribute fail.



4801
4802
4803
# File 'lib/packcr/parser.rb', line 4801

def fail
  @fail
end

#growObject

Returns the value of attribute grow.



4801
4802
4803
# File 'lib/packcr/parser.rb', line 4801

def grow
  @grow
end

#offsetObject

Returns the value of attribute offset.



4801
4802
4803
# File 'lib/packcr/parser.rb', line 4801

def offset
  @offset
end

#offset_locObject

Returns the value of attribute offset_loc.



4801
4802
4803
# File 'lib/packcr/parser.rb', line 4801

def offset_loc
  @offset_loc
end