# File lib/xml/dom/builder.rb, line 143
    def text
      return if @cdata_buf == ''
      textnode = @document.createTextNode(cdataConverter(@cdata_buf))
      @current.appendChild(textnode)
      @cdata_buf = ''
    end