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
Async functions currently get garbled in the transpiled output. Also, yield* <exp>; statements need to be translated to async foreach(var enumItem in (<exp>)) { yield return enumItem; }.
The text was updated successfully, but these errors were encountered:
Async functions currently get garbled in the transpiled output. Also,
yield* <exp>;
statements need to be translated toasync foreach(var enumItem in (<exp>)) { yield return enumItem; }
.The text was updated successfully, but these errors were encountered: