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 1018
1018:     def initialize(name, value, comment)
1019:       super()
1020:       @name = name
1021:       @value = value
1022:       self.comment = comment
1023:     end

[Validate]