# File lib/hocon/impl/tokens.rb, line 58 def initialize(origin) super(TokenType::NEWLINE, origin) end
# File lib/hocon/impl/tokens.rb, line 66 def ==(other) super(other) && other.line_number == line_number end
# File lib/hocon/impl/tokens.rb, line 62 def can_equal(other) o.is_a?(Line) end
# File lib/hocon/impl/tokens.rb, line 70 def hash 41 * (41 + super) + line_number end
# File lib/hocon/impl/tokens.rb, line 74 def token_text "\n" end