# File lib/ruby-vpi/xx.rb, line 321 321: def xx_text_ *objects, &b 322: #--{{{ 323: doc = xx_doc 324: 325: text = 326: ::REXML::Text::new("", 327: respect_whitespace=true, parent=nil 328: ) 329: 330: objects.each do |object| 331: text << object.to_s if object 332: end 333: 334: doc.create text, &b 335: #--}}} 336: end