class RDoc::Alias
Represent an alias, which is an old_name/new_name pair associated with a particular context
Attributes
Aliased method’s name
Aliased method’s name
Aliasee method’s name
Is this an alias declared in a singleton context?
Source file token stream
Public Class Methods
Source
# File lib/rdoc/code_object/alias.rb, line 37 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
Creates a new Alias
with a token stream of text
that aliases old_name
to new_name
, has comment
and is a singleton
context.
Calls superclass method
RDoc::CodeObject::new
Public Instance Methods
Source
Source
# File lib/rdoc/code_object/alias.rb, line 57 def aref type = singleton ? 'c' : 'i' "#alias-#{type}-#{html_name}" end
HTML fragment reference for this alias
Source
# File lib/rdoc/code_object/alias.rb, line 65 def full_old_name @full_name || "#{parent.name}#{pretty_old_name}" end
Full old name including namespace
Source
# File lib/rdoc/code_object/alias.rb, line 72 def html_name CGI.escape(@new_name.gsub('-', '-2D')).gsub('%', '-').sub(/^-/, '') end
HTML id-friendly version of #new_name
.
Source
# File lib/rdoc/code_object/alias.rb, line 87 def name_prefix singleton ? '::' : '#' end
‘::’ for the alias of a singleton method/attribute, ‘#’ for instance-level.
Source
# File lib/rdoc/code_object/alias.rb, line 101 def pretty_new_name "#{singleton ? '::' : '#'}#{@new_name}" end
New name with prefix ‘::’ or ‘#’.
Also aliased as: pretty_name
Source
# File lib/rdoc/code_object/alias.rb, line 94 def pretty_old_name "#{singleton ? '::' : '#'}#{@old_name}" end
Old name with prefix ‘::’ or ‘#’.