module RBS::AST::Members::LocationOnly

def ==(other)

def ==(other)
  other.is_a?(self.class)
end

def hash

def hash
  self.class.hash
end

def initialize(location:)

def initialize(location:)
  @location = location
end