class ReVIEW::UlistNode

Attributes

compiler[R]
content[R]
position[R]

Public Class Methods

new(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1119
def initialize(compiler, position, content)
  @compiler = compiler
  @position = position
  @content = content
end

Public Instance Methods

to_doc() click to toggle source
# File lib/review/node.rb, line 224
def to_doc
  @compiler.compile_ulist(@content)
end