babel/packages
Amjad Masad 2220167903 Fix recursion in async-to-generator transforms
We're naming the inner generator function in the name of the
original async function. This means when people have recursive
await calls it refers to the generator version. Which is fine
if we had a `yield *` (delegate). However, if not it leads to
returning an unresolved generator object.

We can either capture all recursive calls and add a delegate, which
becomes really hard with expressions. I choose to have the name
reserved to the exposed function `retFunction`.

Fixes #2782
2015-11-03 17:05:41 -08:00
..
2015-11-01 22:07:03 +00:00
2015-11-03 19:13:46 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-03 01:23:11 +00:00
2015-11-03 01:23:11 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-10-30 23:30:40 +00:00
2015-11-03 01:23:11 +00:00
2015-11-02 07:13:43 +00:00
2015-11-02 07:13:43 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-11-01 22:07:03 +00:00
2015-10-30 23:30:40 +00:00
2015-11-02 07:13:43 +00:00
2015-11-03 04:21:25 +00:00
2015-10-29 17:51:24 +00:00

Woah, what's going on here?

A monorepo, muhahahahahaha. See the monorepo design doc for reasoning.