| Class | RDoc::Attr |
| In: |
code_objects.rb
|
| Parent: | CodeObject |
| name | [RW] | |
| rw | [RW] | |
| text | [RW] | |
| visibility | [RW] |
# File code_objects.rb, line 841
841: def initialize(text, name, rw, comment)
842: super()
843: @text = text
844: @name = name
845: @rw = rw
846: @visibility = :public
847: self.comment = comment
848: end