Class RDoc::Constant
In: lib/rdoc/code_objects.rb
Parent: CodeObject

Represent a constant

Methods

new  

Attributes

name  [RW] 
value  [RW] 

Public Class methods

[Source]

     # File lib/rdoc/code_objects.rb, line 710
710:     def initialize(name, value, comment)
711:       super()
712:       @name = name
713:       @value = value
714:       self.comment = comment
715:     end

[Validate]