# File lib/hocon/impl/tokens.rb, line 80 def initialize(origin, s) super(TokenType::UNQUOTED_TEXT, origin) @value = s end
# File lib/hocon/impl/tokens.rb, line 94 def ==(other) super(other) && other.value == @value end
# File lib/hocon/impl/tokens.rb, line 90 def can_equal(o) o.is_a?(UnquotedText) end
# File lib/hocon/impl/tokens.rb, line 98 def hash 41 * (41 + super) + value.hash end
# File lib/hocon/impl/tokens.rb, line 86 def to_s "'#{value}'" end
# File lib/hocon/impl/tokens.rb, line 102 def token_text @value end