Class | RDoc::Alias |
In: |
code_objects.rb
doc-tmp/rdoc/code_objects.rb |
Parent: | CodeObject |
Represent an alias, which is an old_name/ new_name pair associated with a particular context
# File code_objects.rb, line 704 704: def initialize(text, old_name, new_name, comment) 705: super() 706: @text = text 707: @old_name = old_name 708: @new_name = new_name 709: self.comment = comment 710: end
# File doc-tmp/rdoc/code_objects.rb, line 704 704: def initialize(text, old_name, new_name, comment) 705: super() 706: @text = text 707: @old_name = old_name 708: @new_name = new_name 709: self.comment = comment 710: end