Files
2026-08-27 10:56:38 -06:00

17 lines
591 B
C#

using Microsoft.CodeAnalysis.CSharp.Symbols;
using Microsoft.CodeAnalysis.Symbols;
namespace Microsoft.CodeAnalysis.CSharp;
internal sealed class AsyncConstructor : SynthesizedInstanceConstructor, ISynthesizedMethodBodyImplementationSymbol, ISymbolInternal
{
IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method => ((ISynthesizedMethodBodyImplementationSymbol)ContainingSymbol).Method;
bool ISynthesizedMethodBodyImplementationSymbol.HasMethodBodyDependency => false;
internal AsyncConstructor(AsyncStateMachine stateMachineType)
: base(stateMachineType)
{
}
}