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 877
877:     def initialize(name, value, comment)
878:       super()
879:       @name = name
880:       @value = value
881:       self.comment = comment
882:     end

[Validate]