# File lib/hocon/impl/tokens.rb, line 29 def initialize(value, orig_text = nil) super(TokenType::VALUE, value.origin, orig_text) @value = value end
# File lib/hocon/impl/tokens.rb, line 49 def ==(other) super(other) && other.value == @value end
# File lib/hocon/impl/tokens.rb, line 45 def can_equal(o) o.is_a?(Value) end
# File lib/hocon/impl/tokens.rb, line 53 def hash 41 * (41 + super) + value.hash end
# File lib/hocon/impl/tokens.rb, line 36 def to_s if value.resolve_status == ResolveStatus::RESOLVED "'#{value.unwrapped}' (#{Hocon::ConfigValueType.value_type_name(value.value_type)})" else "'<unresolved value>' ((#{Hocon::ConfigValueType.value_type_name(value.value_type)})" end end