You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useGeneratorasCoroutine;
functiona() : Coroutine
{
yield1;
}
/** * This function is annotated as coroutine, but is not actually a generator, * which is probably tripping up the stack trace generator. */functionb() : Coroutine
{
returna();
}