class Steep::LocatedValue

def ==(other)

def ==(other)
  other.is_a?(LocatedValue) && other.value == value
end

def hash

def hash
  value.hash # steep:ignore NoMethod
end

def initialize(value:, location:)

def initialize(value:, location:)
  @value = value
  @location = location
end