Class | RDoc::Attr |
In: |
lib/rdoc/code_objects.rb
|
Parent: | CodeObject |
name | [RW] | |
rw | [RW] | |
text | [RW] | |
visibility | [RW] |
# File lib/rdoc/code_objects.rb, line 722 722: def initialize(text, name, rw, comment) 723: super() 724: @text = text 725: @name = name 726: @rw = rw 727: @visibility = :public 728: self.comment = comment 729: end