Class: CmdParse::MemoEntry

Inherits:
Object
  • Object
show all
Defined in:
app/cmd_parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ans, pos) ⇒ MemoEntry

Returns a new instance of MemoEntry.



217
218
219
220
221
222
# File 'app/cmd_parser.rb', line 217

def initialize(ans, pos)
  @ans = ans
  @pos = pos
  @uses = 1
  @result = nil
end

Instance Attribute Details

#ansObject (readonly)

Returns the value of attribute ans.



224
225
226
# File 'app/cmd_parser.rb', line 224

def ans
  @ans
end

#posObject (readonly)

Returns the value of attribute pos.



224
225
226
# File 'app/cmd_parser.rb', line 224

def pos
  @pos
end

#resultObject (readonly)

Returns the value of attribute result.



224
225
226
# File 'app/cmd_parser.rb', line 224

def result
  @result
end

#usesObject (readonly)

Returns the value of attribute uses.



224
225
226
# File 'app/cmd_parser.rb', line 224

def uses
  @uses
end

Instance Method Details

#inc!Object



226
227
228
# File 'app/cmd_parser.rb', line 226

def inc!
  @uses += 1
end

#move!(ans, pos, result) ⇒ Object



230
231
232
233
234
# File 'app/cmd_parser.rb', line 230

def move!(ans, pos, result)
  @ans = ans
  @pos = pos
  @result = result
end