Sha256: 6a108b240d1785de5bd637141bd12a624c1fbfd37d344b7c932775c701d291d2
Contents?: true
Size: 411 Bytes
Versions: 8
Compression:
Stored size: 411 Bytes
Contents
module YARD::CodeObjects # A +ConstantObject+ represents a Ruby constant (not a module or class). # To access the constant's (source code) value, use {#value}. class ConstantObject < Base # The source code representing the constant's value # @return [String] the value the constant is set to attr_accessor :value def value=(value) @value = format_source(value) end end end
Version data entries
8 entries across 8 versions & 1 rubygems