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
comment | [RW] | |
comment | [RW] | |
new_name | [RW] | |
new_name | [RW] | |
old_name | [RW] | |
old_name | [RW] | |
text | [RW] | |
text | [RW] |
# File code_objects.rb, line 1001 1001: def initialize(text, old_name, new_name, comment) 1002: super() 1003: @text = text 1004: @old_name = old_name 1005: @new_name = new_name 1006: self.comment = comment 1007: end
# File doc-tmp/rdoc/code_objects.rb, line 1001 1001: def initialize(text, old_name, new_name, comment) 1002: super() 1003: @text = text 1004: @old_name = old_name 1005: @new_name = new_name 1006: self.comment = comment 1007: end