Class RDoc::Constant
In: code_objects.rb
Parent: CodeObject

Represent a constant

Methods

new  

Attributes

name  [RW] 
value  [RW] 

Public Class methods

[Source]

     # File code_objects.rb, line 825
825:     def initialize(name, value, comment)
826:       super()
827:       @name = name
828:       @value = value
829:       self.comment = comment
830:     end

[Validate]