class Hocon::Impl::Tokens::UnquotedText
Attributes
Public Class Methods
Source
# File lib/hocon/impl/tokens.rb, line 82 def initialize(origin, s) super(TokenType::UNQUOTED_TEXT, origin) @value = s end
Calls superclass method
Public Instance Methods
Source
# File lib/hocon/impl/tokens.rb, line 96 def ==(other) super(other) && other.value == @value end
Calls superclass method
Source
# File lib/hocon/impl/tokens.rb, line 92 def can_equal(o) o.is_a?(UnquotedText) end
Source
# File lib/hocon/impl/tokens.rb, line 100 def hash 41 * (41 + super) + value.hash end
Calls superclass method