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 829
829:     def initialize(name, value, comment)
830:       super()
831:       @name = name
832:       @value = value
833:       self.comment = comment
834:     end

[Validate]