17 references to ConstructorConstraintError
Microsoft.CodeAnalysis.CSharp (17)
Symbols\ConstraintsHelper.cs (17)
1110var error = SatisfiesConstructorConstraint(typeArgument.Type); 1114case ConstructorConstraintError.None: 1116case ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType: 1120case ConstructorConstraintError.HasRequiredMembers: 1467private static ConstructorConstraintError SatisfiesConstructorConstraint(TypeSymbol typeArgument) 1476return ConstructorConstraintError.None; 1481return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1489return typeParameter.HasConstructorConstraint || typeParameter.IsValueType ? ConstructorConstraintError.None : ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1497return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1501private static ConstructorConstraintError SatisfiesPublicParameterlessConstructor(NamedTypeSymbol type, bool synthesizedIfMissing) 1513return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1517return ConstructorConstraintError.HasRequiredMembers; 1521return ConstructorConstraintError.None; 1528(false, _) => ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType, 1529(true, true) => ConstructorConstraintError.HasRequiredMembers, 1530(true, false) => ConstructorConstraintError.None,