Closed
Description
According to #1564 async/await support in ES5 typescript depends on generators in ES5 to be implemented. But ES5 generators implementation has been declined.
I hope it won't mean that async/await support won't be unsupported as well, because async/await depending on generators is a false assumption, as demonstrated by fast-async. Instead of compiling async/await to generators as intermediate step, you can go straight to Promises. It results in ES5 target support and better looking code.
Could you consider implementing async/await support for ES5 target without focusing so much on generators? Most of the community finds async/await support more important.
Ping @RyanCavanaugh