# File lib/hocon/impl/tokens.rb, line 81 def initialize(origin, s) super(TokenType::UNQUOTED_TEXT, origin) @value = s end
# File lib/hocon/impl/tokens.rb, line 95 def ==(other) super(other) && other.value == @value end
# File lib/hocon/impl/tokens.rb, line 91 def can_equal(o) o.is_a?(UnquotedText) end
# File lib/hocon/impl/tokens.rb, line 99 def hash 41 * (41 + super) + value.hash end
# File lib/hocon/impl/tokens.rb, line 87 def to_s "'#{value}'" end
# File lib/hocon/impl/tokens.rb, line 103 def token_text @value end