class Hocon::Impl::Tokens::IgnoredWhitespace
Attributes
Public Class Methods
Source
# File lib/hocon/impl/tokens.rb, line 110 def initialize(origin, s) super(TokenType::IGNORED_WHITESPACE, origin) @value = s end
Calls superclass method
Public Instance Methods
Source
# File lib/hocon/impl/tokens.rb, line 124 def ==(other) super(other) && other.value == value end
Calls superclass method
Source
# File lib/hocon/impl/tokens.rb, line 120 def can_equal(o) o.is_a?(IgnoredWhitespace) end
Source
# File lib/hocon/impl/tokens.rb, line 128 def hash 41 * (41 + super) + value.hash end
Calls superclass method