class RBS::Definition::Ancestor::Instance

def ==(other)

def ==(other)
  other.is_a?(Instance) && other.name == name && other.args == args
end

def hash

def hash
  self.class.hash ^ name.hash ^ args.hash
end

def initialize(name:, args:, source:)

def initialize(name:, args:, source:)
  @name = name
  @args = args
  @source = source
end