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