|
// 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.
#nullable disable
using Microsoft.CodeAnalysis.CSharp.Symbols;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Text;
namespace Microsoft.CodeAnalysis.CSharp.Emit
{
/// <summary>
/// Represents a method of a generic type instantiation.
/// e.g.
/// A{int}.M()
/// A.B{int}.C.M()
/// </summary>
internal class SpecializedMethodReference : MethodReference, Cci.ISpecializedMethodReference
{
public SpecializedMethodReference(MethodSymbol underlyingMethod)
: base(underlyingMethod)
{
}
public override void Dispatch(Cci.MetadataVisitor visitor)
{
visitor.Visit((Cci.ISpecializedMethodReference)this);
}
Cci.IMethodReference Cci.ISpecializedMethodReference.UnspecializedVersion
{
get
{
return UnderlyingMethod.OriginalDefinition.GetCciAdapter();
}
}
public override Cci.ISpecializedMethodReference AsSpecializedMethodReference
{
get
{
return this;
}
}
}
}
|