17 references to ConstructorConstraintError
Microsoft.CodeAnalysis.CSharp (17)
Symbols\ConstraintsHelper.cs (17)
1017var error = SatisfiesConstructorConstraint(typeArgument.Type); 1021case ConstructorConstraintError.None: 1023case ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType: 1027case ConstructorConstraintError.HasRequiredMembers: 1366private static ConstructorConstraintError SatisfiesConstructorConstraint(TypeSymbol typeArgument) 1375return ConstructorConstraintError.None; 1380return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1388return typeParameter.HasConstructorConstraint || typeParameter.IsValueType ? ConstructorConstraintError.None : ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1396return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1400private static ConstructorConstraintError SatisfiesPublicParameterlessConstructor(NamedTypeSymbol type, bool synthesizedIfMissing) 1412return ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType; 1416return ConstructorConstraintError.HasRequiredMembers; 1420return ConstructorConstraintError.None; 1427(false, _) => ConstructorConstraintError.NoPublicParameterlessConstructorOrAbstractType, 1428(true, true) => ConstructorConstraintError.HasRequiredMembers, 1429(true, false) => ConstructorConstraintError.None,