3 references to IsAsyncThunk
ILCompiler.ReadyToRun (3)
parent\parent\Common\Compiler\AsyncMethodVariant.cs (1)
171
return (method.
IsAsyncThunk
() && !method.SupportsAsyncVersionCodegen()) || method is AsyncResumptionStub;
parent\parent\Common\Compiler\MethodExtensions.cs (1)
210
public static bool SupportsAsyncVersionCodegen(this MethodDesc method) => method.IsAsyncVariant() && method.
IsAsyncThunk
() && !method.IsReturnDroppingAsyncThunk();
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
1727
variantIsThunk = method.
IsAsyncThunk
();