class Asciidoctor::AbstractNode

def parent=(parent)

Returns nothing

parent - The Block to set as the parent of this Block

Public: Associate this Block with a new parent Block
def parent=(parent)
  @parent = parent
  @document = parent.document
  nil
end