| File: Symbols\TypeParameterBounds.cs | Web Access |
| Project: src\roslyn\src\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj (Microsoft.CodeAnalysis.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp.Symbols { /// <summary> /// The effective "bounds" of a type parameter: the constraint types, effective /// interface set, and effective base type, determined from the declared /// constraints, with any cycles removed. The fields are exposed by the /// TypeParameterSymbol as ConstraintTypes, Interfaces, and BaseType. /// </summary> internal sealed class TypeParameterBounds { public static readonly TypeParameterBounds Unset = new TypeParameterBounds(); /// <summary> /// Creates a "late" bound instance with all fields set. /// </summary> public TypeParameterBounds( ImmutableArray<TypeWithAnnotations> constraintTypes, ImmutableArray<NamedTypeSymbol> interfaces, NamedTypeSymbol effectiveBaseClass, TypeSymbol deducedBaseType) { Debug.Assert(!constraintTypes.IsDefault); Debug.Assert(!interfaces.IsDefault); Debug.Assert((object)effectiveBaseClass != null); Debug.Assert((object)deducedBaseType != null); this.ConstraintTypes = constraintTypes; this.Interfaces = interfaces; this.EffectiveBaseClass = effectiveBaseClass; this.DeducedBaseType = deducedBaseType; } private TypeParameterBounds() { EffectiveBaseClass = null!; DeducedBaseType = null!; } /// <summary> /// The type parameters, classes, and interfaces explicitly declared as /// constraint types on the containing type parameter, with cycles removed. /// </summary> public readonly ImmutableArray<TypeWithAnnotations> ConstraintTypes; /// <summary> /// The set of interfaces explicitly declared on the containing type /// parameter and any type parameters on which the containing /// type parameter depends, with duplicates removed. /// </summary> public readonly ImmutableArray<NamedTypeSymbol> Interfaces; /// <summary> /// As defined in 10.1.5 of the specification. /// </summary> public readonly NamedTypeSymbol EffectiveBaseClass; /// <summary> /// The "exact" effective base type. /// In the definition of effective base type we abstract some concrete types to their base classes: /// * For each constraint of T that is a struct-type, R contains System.ValueType. /// * For each constraint of T that is an enumeration type, R contains System.Enum. /// * For each constraint of T that is a delegate type, R contains System.Delegate. /// * For each constraint of T that is an array type, R contains System.Array. /// * For each constraint of T that is a class-type C, R contains type C' which is constructed /// from C by replacing all occurrences of dynamic with object. /// The reason is that the CLR doesn't support operations on generic parameters that would be needed /// to work with these types. For example, ldelem instruction requires the receiver to be a specific array, /// not a type parameter constrained to be an array. /// /// When computing the deduced type we don't perform this abstraction. We keep the original constraint T. /// Deduced base type is used to check that consistency rules are satisfied. /// </summary> public readonly TypeSymbol DeducedBaseType; } internal static class TypeParameterBoundsExtensions { internal static bool IsSet(this TypeParameterBounds boundsOpt) { return boundsOpt != TypeParameterBounds.Unset; } } }