Class | RDoc::Attr |
In: |
code_objects.rb
doc-tmp/rdoc/code_objects.rb |
Parent: | CodeObject |
# File doc-tmp/rdoc/code_objects.rb, line 733 733: def initialize(text, name, rw, comment) 734: super() 735: @text = text 736: @name = name 737: @rw = rw 738: @visibility = :public 739: self.comment = comment 740: end
# File code_objects.rb, line 733 733: def initialize(text, name, rw, comment) 734: super() 735: @text = text 736: @name = name 737: @rw = rw 738: @visibility = :public 739: self.comment = comment 740: end
# File doc-tmp/rdoc/code_objects.rb, line 746 746: def <=>(other) 747: self.name <=> other.name 748: end