Class: RDoc::Markdown::Literals::MemoEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/rdoc/markdown/literals_1_9.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
223
# File 'lib/rdoc/markdown/literals_1_9.rb', line 217

def initialize(ans, pos)
  @ans = ans
  @pos = pos
  @result = nil
  @set = false
  @left_rec = false
end

Instance Attribute Details

#ansObject (readonly)

Returns the value of attribute ans



225
226
227
# File 'lib/rdoc/markdown/literals_1_9.rb', line 225

def ans
  @ans
end

#left_recObject

Returns the value of attribute left_rec



226
227
228
# File 'lib/rdoc/markdown/literals_1_9.rb', line 226

def left_rec
  @left_rec
end

#posObject (readonly)

Returns the value of attribute pos



225
226
227
# File 'lib/rdoc/markdown/literals_1_9.rb', line 225

def pos
  @pos
end

#resultObject (readonly)

Returns the value of attribute result



225
226
227
# File 'lib/rdoc/markdown/literals_1_9.rb', line 225

def result
  @result
end

#setObject (readonly)

Returns the value of attribute set



225
226
227
# File 'lib/rdoc/markdown/literals_1_9.rb', line 225

def set
  @set
end

Instance Method Details

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



228
229
230
231
232
233
234
# File 'lib/rdoc/markdown/literals_1_9.rb', line 228

def move!(ans, pos, result)
  @ans = ans
  @pos = pos
  @result = result
  @set = true
  @left_rec = false
end