Skip to content

Commit

Permalink
Fix Async Generic After Await Parsing Error (babel#11092)
Browse files Browse the repository at this point in the history
* test: add test case

* fix: reset awaitPos before parsing generic arrow fn

* fix: maybeInArrowParameters reset to true
  • Loading branch information
liamfd authored and rajasekarm committed Feb 17, 2020
1 parent e103fb2 commit b700655
Show file tree
Hide file tree
Showing 3 changed files with 230 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/babel-parser/src/plugins/typescript/index.js
Expand Up @@ -1528,6 +1528,14 @@ export default (superClass: Class<Parser>): Class<Parser> =>
if (!this.isRelational("<")) {
return undefined;
}

const oldMaybeInArrowParameters = this.state.maybeInArrowParameters;
const oldYieldPos = this.state.yieldPos;
const oldAwaitPos = this.state.awaitPos;
this.state.maybeInArrowParameters = true;
this.state.yieldPos = -1;
this.state.awaitPos = -1;

const res: ?N.ArrowFunctionExpression = this.tsTryParseAndCatch(() => {
const node: N.ArrowFunctionExpression = this.startNodeAt(
startPos,
Expand All @@ -1541,6 +1549,10 @@ export default (superClass: Class<Parser>): Class<Parser> =>
return node;
});

this.state.maybeInArrowParameters = oldMaybeInArrowParameters;
this.state.yieldPos = oldYieldPos;
this.state.awaitPos = oldAwaitPos;

if (!res) {
return undefined;
}
Expand Down
@@ -0,0 +1,4 @@
async () => {
await null;
async <T>() => null;
};
@@ -0,0 +1,214 @@
{
"type": "File",
"start": 0,
"end": 53,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 4,
"column": 2
}
},
"program": {
"type": "Program",
"start": 0,
"end": 53,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 4,
"column": 2
}
},
"sourceType": "module",
"interpreter": null,
"body": [
{
"type": "ExpressionStatement",
"start": 0,
"end": 53,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 4,
"column": 2
}
},
"expression": {
"type": "ArrowFunctionExpression",
"start": 0,
"end": 52,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 4,
"column": 1
}
},
"id": null,
"generator": false,
"async": true,
"params": [],
"body": {
"type": "BlockStatement",
"start": 12,
"end": 52,
"loc": {
"start": {
"line": 1,
"column": 12
},
"end": {
"line": 4,
"column": 1
}
},
"body": [
{
"type": "ExpressionStatement",
"start": 16,
"end": 27,
"loc": {
"start": {
"line": 2,
"column": 2
},
"end": {
"line": 2,
"column": 13
}
},
"expression": {
"type": "AwaitExpression",
"start": 16,
"end": 26,
"loc": {
"start": {
"line": 2,
"column": 2
},
"end": {
"line": 2,
"column": 12
}
},
"argument": {
"type": "NullLiteral",
"start": 22,
"end": 26,
"loc": {
"start": {
"line": 2,
"column": 8
},
"end": {
"line": 2,
"column": 12
}
}
}
}
},
{
"type": "ExpressionStatement",
"start": 30,
"end": 50,
"loc": {
"start": {
"line": 3,
"column": 2
},
"end": {
"line": 3,
"column": 22
}
},
"expression": {
"type": "ArrowFunctionExpression",
"start": 30,
"end": 49,
"loc": {
"start": {
"line": 3,
"column": 2
},
"end": {
"line": 3,
"column": 21
}
},
"typeParameters": {
"type": "TSTypeParameterDeclaration",
"start": 36,
"end": 39,
"loc": {
"start": {
"line": 3,
"column": 8
},
"end": {
"line": 3,
"column": 11
}
},
"params": [
{
"type": "TSTypeParameter",
"start": 37,
"end": 38,
"loc": {
"start": {
"line": 3,
"column": 9
},
"end": {
"line": 3,
"column": 10
}
},
"name": "T"
}
]
},
"params": [],
"id": null,
"generator": false,
"async": true,
"body": {
"type": "NullLiteral",
"start": 45,
"end": 49,
"loc": {
"start": {
"line": 3,
"column": 17
},
"end": {
"line": 3,
"column": 21
}
}
}
}
}
],
"directives": []
}
}
}
],
"directives": []
}
}

0 comments on commit b700655

Please sign in to comment.