Skip to content

Commit

Permalink
include generators for do expression
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhauhau committed Jun 16, 2019
1 parent a567768 commit 98c0957
Show file tree
Hide file tree
Showing 10 changed files with 81 additions and 4 deletions.
@@ -0,0 +1,15 @@
async function* asyncGenerator(x) {
const y = do {
let z;
yield 3;
yield await x;
};

return y;
}

const promise = Promise.resolve(5);
const gen = asyncGenerator(promise);
expect(gen.next()).resolves.toMatchObject({ value: 3, done: false });
expect(gen.next()).resolves.toMatchObject({ value: 5, done: false });
expect(gen.next(10)).resolves.toMatchObject({ value: 10, done: true });
@@ -0,0 +1,8 @@
async function* asyncGenerator(x) {
const y = do {
let z;
yield await x;
};

return y;
}
@@ -0,0 +1,3 @@
{
"minNodeVersion": "10.0.0"
}
@@ -0,0 +1,7 @@
async function* asyncGenerator(x) {
const y = yield* await async function* () {
let z;
return yield await x;
}();
return y;
}
@@ -1,3 +1,3 @@
{
"minNodeVersion": "6.0.0"
"minNodeVersion": "8.0.0"
}
@@ -0,0 +1,14 @@
function * generator() {
yield 1;
const y = do {
let z;
yield 2;
};

return y;
}

const gen = generator();
expect(gen.next().value).toBe(1);
expect(gen.next().value).toBe(2);
expect(gen.next(3).value).toBe(3);
@@ -0,0 +1,8 @@
function * g() {
const y = do {
let z;
yield 1;
};

return y;
}
@@ -0,0 +1,3 @@
{
"minNodeVersion": "8.0.0"
}
@@ -0,0 +1,7 @@
function* g() {
const y = yield* function* () {
let z;
return yield 1;
}();
return y;
}
18 changes: 15 additions & 3 deletions packages/babel-traverse/src/path/replacement.js
Expand Up @@ -218,6 +218,7 @@ export function replaceExpressionWithStatements(nodes: Array<Object>) {

const functionParent = this.getFunctionParent();
const isParentAsync = functionParent && functionParent.is("async");
const isParentGenerator = functionParent && functionParent.is("generator");

const container = t.arrowFunctionExpression([], t.blockStatement(nodes));

Expand Down Expand Up @@ -260,17 +261,28 @@ export function replaceExpressionWithStatements(nodes: Array<Object>) {
callee.arrowFunctionToExpression();

// (() => await xxx)() -> await (async () => await xxx)();
if (
const needToAwaitFunction =
isParentAsync &&
traverse.hasType(
this.get("callee.body").node,
"AwaitExpression",
t.FUNCTION_TYPES,
)
) {
);
const needToYieldFunction =
isParentGenerator &&
traverse.hasType(
this.get("callee.body").node,
"YieldExpression",
t.FUNCTION_TYPES,
);
if (needToAwaitFunction) {
callee.set("async", true);
this.replaceWith(t.awaitExpression(this.node));
}
if (needToYieldFunction) {
callee.set("generator", true);
this.replaceWith(t.yieldExpression(this.node, true));
}

return callee.get("body.body");
}
Expand Down

0 comments on commit 98c0957

Please sign in to comment.