# File lib/xml/dom2/dombuilder.rb, line 117 def text return if @cdata_buf == '' textnode = @document.createTextNode(@cdata_buf) @current.appendChild(textnode) @cdata_buf = '' end