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