| File: Symbols\SynthesizedSimpleMethodTypeParameterSymbol.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 Roslyn.Utilities; using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp.Symbols { /// <summary> /// A simple method type parameter with no constraints. /// </summary> internal sealed class SynthesizedSimpleMethodTypeParameterSymbol : TypeParameterSymbol { private readonly MethodSymbol _container; private readonly int _ordinal; private readonly string _name; public SynthesizedSimpleMethodTypeParameterSymbol(MethodSymbol container, int ordinal, string name) { _container = container; _ordinal = ordinal; _name = name; } public override string Name { get { return _name; } } public override int Ordinal { get { return _ordinal; } } public override TypeParameterKind TypeParameterKind { get { return TypeParameterKind.Method; } } public override bool HasConstructorConstraint { get { return false; } } public override bool HasReferenceTypeConstraint { get { return false; } } public override bool IsReferenceTypeFromConstraintTypes { get { return false; } } internal override bool? ReferenceTypeConstraintIsNullable { get { return false; } } public override bool HasNotNullConstraint => false; internal override bool? IsNotNullable => null; public override bool HasValueTypeConstraint { get { return false; } } public override bool AllowsRefLikeType { get { return false; } } public override bool IsValueTypeFromConstraintTypes { get { return false; } } public override bool HasUnmanagedTypeConstraint { get { return false; } } public override VarianceKind Variance { get { return VarianceKind.None; } } public override Symbol ContainingSymbol { get { return _container; } } public override ImmutableArray<Location> Locations { get { throw ExceptionUtilities.Unreachable(); } } public override ImmutableArray<SyntaxReference> DeclaringSyntaxReferences { get { throw ExceptionUtilities.Unreachable(); } } internal override void EnsureAllConstraintsAreResolved() { } internal override ImmutableArray<TypeWithAnnotations> GetConstraintTypes(ConsList<TypeParameterSymbol> inProgress) { return ImmutableArray<TypeWithAnnotations>.Empty; } internal override ImmutableArray<NamedTypeSymbol> GetInterfaces(ConsList<TypeParameterSymbol> inProgress) { throw ExceptionUtilities.Unreachable(); } internal override NamedTypeSymbol GetEffectiveBaseClass(ConsList<TypeParameterSymbol> inProgress) { throw ExceptionUtilities.Unreachable(); } internal override TypeSymbol GetDeducedBaseType(ConsList<TypeParameterSymbol> inProgress) { throw ExceptionUtilities.Unreachable(); } } }