Represent a constant
[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]