Class | RDoc::Attr |
In: |
code_objects.rb
doc-tmp/rdoc/code_objects.rb |
Parent: | CodeObject |
name | [RW] | |
name | [RW] | |
rw | [RW] | |
rw | [RW] | |
text | [RW] | |
text | [RW] | |
visibility | [RW] | |
visibility | [RW] |
# File doc-tmp/rdoc/code_objects.rb, line 1030 1030: def initialize(text, name, rw, comment) 1031: super() 1032: @text = text 1033: @name = name 1034: @rw = rw 1035: @visibility = :public 1036: self.comment = comment 1037: end
# File code_objects.rb, line 1030 1030: def initialize(text, name, rw, comment) 1031: super() 1032: @text = text 1033: @name = name 1034: @rw = rw 1035: @visibility = :public 1036: self.comment = comment 1037: end
# File doc-tmp/rdoc/code_objects.rb, line 1043 1043: def <=>(other) 1044: self.name <=> other.name 1045: end