Sha256: 51a3a3c51f31ca21bf67db92b346d37837bda8a5060835ebfc33600fd6f23c24
Contents?: true
Size: 405 Bytes
Versions: 99
Compression:
Stored size: 405 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_reader :value def value=(value) @value = format_source(value) end end end
Version data entries
99 entries across 80 versions & 9 rubygems