# File src/rexml/light/node.rb, line 41
                        def initialize node=nil
                                if node.kind_of? String
                                        node = [ :text, node ]
                                elsif node.nil?
                                        node = [ :start_document, nil, nil ]
                                end
                                replace( node )
                                _old_put( 1, 0, 1 )
                                _old_put( 1, nil )
                        end