Class RDoc::Constant
In: code_objects.rb
doc-tmp/rdoc/code_objects.rb
Parent: CodeObject

Represent a constant

Methods

new   new  

Public Class methods

[Source]

     # File code_objects.rb, line 721
721:     def initialize(name, value, comment)
722:       super()
723:       @name = name
724:       @value = value
725:       self.comment = comment
726:     end

[Source]

     # File doc-tmp/rdoc/code_objects.rb, line 721
721:     def initialize(name, value, comment)
722:       super()
723:       @name = name
724:       @value = value
725:       self.comment = comment
726:     end

[Validate]