module ReVIEWConstruction

Public Instance Methods

block_element(compiler, position, name, args, content) click to toggle source
# File lib/review/compiler.rb, line 1142
def block_element(compiler, position, name, args, content)
  ::ReVIEW::BlockElementNode.new(compiler, position, name, args, content)
end
brace(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1145
def brace(compiler, position, content)
  ::ReVIEW::BraceNode.new(compiler, position, content)
end
bracket_arg(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1148
def bracket_arg(compiler, position, content)
  ::ReVIEW::BracketArgNode.new(compiler, position, content)
end
code_block_element(compiler, position, name, args, content) click to toggle source
# File lib/review/compiler.rb, line 1151
def code_block_element(compiler, position, name, args, content)
  ::ReVIEW::CodeBlockElementNode.new(compiler, position, name, args, content)
end
column(compiler, position, level, label, caption, content) click to toggle source
# File lib/review/compiler.rb, line 1154
def column(compiler, position, level, label, caption, content)
  ::ReVIEW::ColumnNode.new(compiler, position, level, label, caption, content)
end
complex_inline_element(compiler, position, symbol, content) click to toggle source
# File lib/review/compiler.rb, line 1157
def complex_inline_element(compiler, position, symbol, content)
  ::ReVIEW::ComplexInlineElementNode.new(compiler, position, symbol, content)
end
complex_inline_element_content(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1160
def complex_inline_element_content(compiler, position, content)
  ::ReVIEW::ComplexInlineElementContentNode.new(compiler, position, content)
end
dlist(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1163
def dlist(compiler, position, content)
  ::ReVIEW::DlistNode.new(compiler, position, content)
end
dlist_element(compiler, position, text, content) click to toggle source
# File lib/review/compiler.rb, line 1166
def dlist_element(compiler, position, text, content)
  ::ReVIEW::DlistElementNode.new(compiler, position, text, content)
end
document(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1169
def document(compiler, position, content)
  ::ReVIEW::DocumentNode.new(compiler, position, content)
end
headline(compiler, position, level, cmd, label, content) click to toggle source
# File lib/review/compiler.rb, line 1172
def headline(compiler, position, level, cmd, label, content)
  ::ReVIEW::HeadlineNode.new(compiler, position, level, cmd, label, content)
end
inline_element(compiler, position, symbol, content) click to toggle source
# File lib/review/compiler.rb, line 1175
def inline_element(compiler, position, symbol, content)
  ::ReVIEW::InlineElementNode.new(compiler, position, symbol, content)
end
inline_element_content(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1178
def inline_element_content(compiler, position, content)
  ::ReVIEW::InlineElementContentNode.new(compiler, position, content)
end
newline(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1181
def newline(compiler, position, content)
  ::ReVIEW::NewLineNode.new(compiler, position, content)
end
olist(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1184
def olist(compiler, position, content)
  ::ReVIEW::OlistNode.new(compiler, position, content)
end
olist_element(compiler, position, num, content) click to toggle source
# File lib/review/compiler.rb, line 1187
def olist_element(compiler, position, num, content)
  ::ReVIEW::OlistElementNode.new(compiler, position, num, content)
end
paragraph(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1190
def paragraph(compiler, position, content)
  ::ReVIEW::ParagraphNode.new(compiler, position, content)
end
raw(compiler, builder, position, content) click to toggle source
# File lib/review/compiler.rb, line 1193
def raw(compiler, builder, position, content)
  ::ReVIEW::RawNode.new(compiler, builder, position, content)
end
singleline_comment(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1196
def singleline_comment(compiler, position, content)
  ::ReVIEW::SinglelineCommentNode.new(compiler, position, content)
end
singleline_content(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1199
def singleline_content(compiler, position, content)
  ::ReVIEW::SinglelineContentNode.new(compiler, position, content)
end
text(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1202
def text(compiler, position, content)
  ::ReVIEW::TextNode.new(compiler, position, content)
end
ulist(compiler, position, content) click to toggle source
# File lib/review/compiler.rb, line 1205
def ulist(compiler, position, content)
  ::ReVIEW::UlistNode.new(compiler, position, content)
end
ulist_element(compiler, position, level, content) click to toggle source
# File lib/review/compiler.rb, line 1208
def ulist_element(compiler, position, level, content)
  ::ReVIEW::UlistElementNode.new(compiler, position, level, content)
end