17 references to ConstructorConstraintError
Microsoft.CodeAnalysis.CSharp (17)
Symbols\ConstraintsHelper.cs (17)
1120var error = SatisfiesConstructorConstraint(typeArgument.Type); 1124case ConstructorConstraintError.None: 1126case ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType: 1130case ConstructorConstraintError.HasRequiredMembers: 1479private static ConstructorConstraintError SatisfiesConstructorConstraint(TypeSymbol typeArgument) 1488return ConstructorConstraintError.None; 1493return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1501return typeParameter.HasConstructorConstraint || typeParameter.IsValueType ? ConstructorConstraintError.None : ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1509return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1513private static ConstructorConstraintError SatisfiesPublicParameterlessConstructor(NamedTypeSymbol type, bool synthesizedIfMissing) 1525return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1529return ConstructorConstraintError.HasRequiredMembers; 1533return ConstructorConstraintError.None; 1540(false, _) => ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType, 1541(true, true) => ConstructorConstraintError.HasRequiredMembers, 1542(true, false) => ConstructorConstraintError.None,