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