class RBS::AST::Declarations::Class::Super

def ==(other)

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

def hash

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

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

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

def to_json(state = _ = nil)

def to_json(state = _ = nil)
  {
    name: name,
    args: args,
    location: location
  }.to_json(state)
end