class RBS::AST::TypeParam
def ==(other)
def ==(other) other.is_a?(TypeParam) && other.name == name && other.variance == variance && other.upper_bound_type == upper_bound_type && other.default_type == default_type && other.unchecked? == unchecked? end