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

Inherits:
Object
  • Object
show all
Defined in:
lib/rdoc/markdown/literals.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ans, pos) ⇒ MemoEntry

Returns a new instance of MemoEntry.



258
259
260
261
262
263
264
# File 'lib/rdoc/markdown/literals.rb', line 258

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.



266
267
268
# File 'lib/rdoc/markdown/literals.rb', line 266

def ans
  @ans
end

#left_recObject

Returns the value of attribute left_rec.



267
268
269
# File 'lib/rdoc/markdown/literals.rb', line 267

def left_rec
  @left_rec
end

#posObject (readonly)

Returns the value of attribute pos.



266
267
268
# File 'lib/rdoc/markdown/literals.rb', line 266

def pos
  @pos
end

#resultObject (readonly)

Returns the value of attribute result.



266
267
268
# File 'lib/rdoc/markdown/literals.rb', line 266

def result
  @result
end

#setObject (readonly)

Returns the value of attribute set.



266
267
268
# File 'lib/rdoc/markdown/literals.rb', line 266

def set
  @set
end

Instance Method Details

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



269
270
271
272
273
274
275
# File 'lib/rdoc/markdown/literals.rb', line 269

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