17 lines
591 B
C#
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)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|