class RDoc::CodeObject

def comment=(comment)

def comment=(comment)
  @comment = case comment
             when NilClass               then ''
             when RDoc::Markup::Document then comment
             else
               if comment and not comment.empty? then
                 normalize_comment comment
               else
                 @comment
               end
             end
end