# File rexml/comment.rb, line 39
    def initialize( first, second = nil )
      super second
      if first.kind_of? String
	@string = first
      elsif first.kind_of? Comment
	@string = first.string
      elsif first.kind_of? Source
	@string = first.match( PATTERN, true )[1]
      end
    end