Merge pull request #2793 from amasad/fix-2789
Convert arrow functions when remaping to generator. Fixes #2789
This commit is contained in:
@@ -0,0 +1 @@
|
||||
(async () => { await foo(); })()
|
||||
@@ -0,0 +1,4 @@
|
||||
import { coroutine as _coroutine } from "bluebird";
|
||||
_coroutine(function* () {
|
||||
yield foo();
|
||||
})();
|
||||
Reference in New Issue
Block a user