class RDoc::Alias

def initialize(text, old_name, new_name, comment, singleton = false)

def initialize(text, old_name, new_name, comment, singleton = false)
  super()
  @text = text
  @singleton = singleton
  @old_name = old_name
  @new_name = new_name
  self.comment = comment
end