Class: Dang::Parser::MemoEntry
- Inherits:
-
Object
- Object
- Dang::Parser::MemoEntry
- Defined in:
- lib/dang/parser.rb
Instance Attribute Summary collapse
-
#ans ⇒ Object
readonly
Returns the value of attribute ans.
-
#left_rec ⇒ Object
Returns the value of attribute left_rec.
-
#pos ⇒ Object
readonly
Returns the value of attribute pos.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
-
#set ⇒ Object
readonly
Returns the value of attribute set.
Instance Method Summary collapse
-
#initialize(ans, pos) ⇒ MemoEntry
constructor
A new instance of MemoEntry.
- #move!(ans, pos, result) ⇒ Object
Constructor Details
#initialize(ans, pos) ⇒ MemoEntry
Returns a new instance of MemoEntry.
212 213 214 215 216 217 218 |
# File 'lib/dang/parser.rb', line 212 def initialize(ans, pos) @ans = ans @pos = pos @result = nil @set = false @left_rec = false end |
Instance Attribute Details
#ans ⇒ Object (readonly)
Returns the value of attribute ans.
220 221 222 |
# File 'lib/dang/parser.rb', line 220 def ans @ans end |
#left_rec ⇒ Object
Returns the value of attribute left_rec.
221 222 223 |
# File 'lib/dang/parser.rb', line 221 def left_rec @left_rec end |
#pos ⇒ Object (readonly)
Returns the value of attribute pos.
220 221 222 |
# File 'lib/dang/parser.rb', line 220 def pos @pos end |
#result ⇒ Object (readonly)
Returns the value of attribute result.
220 221 222 |
# File 'lib/dang/parser.rb', line 220 def result @result end |
#set ⇒ Object (readonly)
Returns the value of attribute set.
220 221 222 |
# File 'lib/dang/parser.rb', line 220 def set @set end |
Instance Method Details
#move!(ans, pos, result) ⇒ Object
223 224 225 226 227 228 229 |
# File 'lib/dang/parser.rb', line 223 def move!(ans, pos, result) @ans = ans @pos = pos @result = result @set = true @left_rec = false end |