fe777c5c82
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Linq;
|
|
|
|
namespace N.M
|
|
{
|
|
class C
|
|
{
|
|
public static async Task<int> AsyncMethod ()
|
|
{
|
|
await Task.Delay (1);
|
|
return 0;
|
|
}
|
|
|
|
public static async Task NestedAsyncAnonymousMethod ()
|
|
{
|
|
Action a = async delegate {
|
|
await Task.Yield();
|
|
};
|
|
|
|
await Task.Yield();
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
var m = typeof (C).GetMethod ("AsyncMethod");
|
|
var attr = m.GetCustomAttribute<AsyncStateMachineAttribute> ();
|
|
if (attr == null)
|
|
return 1;
|
|
|
|
if (attr.StateMachineType == null)
|
|
return 2;
|
|
|
|
Func<Task<int>> a = async () => await AsyncMethod ();
|
|
|
|
var c = typeof (C).GetMethods (BindingFlags.NonPublic | BindingFlags.Static).Where (l =>
|
|
l.IsDefined (typeof (AsyncStateMachineAttribute))).Count ();
|
|
|
|
if (c != 1)
|
|
return 3;
|
|
|
|
|
|
m = typeof (C).GetMethod ("NestedAsyncAnonymousMethod");
|
|
attr = m.GetCustomAttribute<AsyncStateMachineAttribute> ();
|
|
if (attr == null)
|
|
return 10;
|
|
|
|
if (attr.StateMachineType == null)
|
|
return 11;
|
|
|
|
var n = typeof (C).GetNestedTypes (BindingFlags.NonPublic).Single (l => l.Name.Contains ("NestedAsyncAnonymousMethod"));
|
|
if (n == null)
|
|
return 12;
|
|
|
|
m = n.GetMethods (BindingFlags.NonPublic | BindingFlags.Static).Single (l => l.Name.Contains ("m__"));
|
|
|
|
attr = m.GetCustomAttribute<AsyncStateMachineAttribute> ();
|
|
if (attr == null)
|
|
return 13;
|
|
|
|
if (attr.StateMachineType == null)
|
|
return 14;
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|