class Steep::Services::ContentChange::Position
def ==(other)
def ==(other) other.is_a?(Position) && other.line == line && other.column == column end
def hash
def hash self.class.hash ^ line ^ column end
def initialize(line:, column:)
def initialize(line:, column:) @line = line @column = column end