module RD::ParserUtility
Public Instance Methods
add_children_to_element(parent, *children)
click to toggle source
# File lib/rd/parser-util.rb, line 4 def add_children_to_element(parent, *children) # parent.add_children_under_document_struct(children, # tree.document_struct) parent.add_children_without_document_struct(children) end
tree()
click to toggle source
# File lib/rd/parser-util.rb, line 10 def tree raise NotImplementedError, "Subclass Responsibility" end