Skip to content

Commit

Permalink
Fix: Allow identifier async for default param in arrow expression (b…
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo authored and JacopKane committed Jan 11, 2018
1 parent 2597f0c commit 9128821
Show file tree
Hide file tree
Showing 25 changed files with 2,221 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/babylon/src/parser/expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ pp.parseObj = function (isPattern, refShorthandDefaultPos) {
if (isGenerator) this.unexpected();

let asyncId = this.parseIdentifier();
if (this.match(tt.colon) || this.match(tt.parenL) || this.match(tt.braceR)) {
if (this.match(tt.colon) || this.match(tt.parenL) || this.match(tt.braceR) || this.match(tt.eq)) {
prop.key = asyncId;
} else {
isAsync = true;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const foo = ({ async = true }) => {};
224 changes: 224 additions & 0 deletions packages/babylon/test/fixtures/es2017/async-functions/27/expected.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
{
"type": "File",
"start": 0,
"end": 37,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 37
}
},
"program": {
"type": "Program",
"start": 0,
"end": 37,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 37
}
},
"sourceType": "script",
"body": [
{
"type": "VariableDeclaration",
"start": 0,
"end": 37,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 37
}
},
"declarations": [
{
"type": "VariableDeclarator",
"start": 6,
"end": 36,
"loc": {
"start": {
"line": 1,
"column": 6
},
"end": {
"line": 1,
"column": 36
}
},
"id": {
"type": "Identifier",
"start": 6,
"end": 9,
"loc": {
"start": {
"line": 1,
"column": 6
},
"end": {
"line": 1,
"column": 9
},
"identifierName": "foo"
},
"name": "foo"
},
"init": {
"type": "ArrowFunctionExpression",
"start": 12,
"end": 36,
"loc": {
"start": {
"line": 1,
"column": 12
},
"end": {
"line": 1,
"column": 36
}
},
"id": null,
"generator": false,
"expression": false,
"async": false,
"params": [
{
"type": "ObjectPattern",
"start": 13,
"end": 29,
"loc": {
"start": {
"line": 1,
"column": 13
},
"end": {
"line": 1,
"column": 29
}
},
"properties": [
{
"type": "ObjectProperty",
"start": 15,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 15
},
"end": {
"line": 1,
"column": 27
}
},
"method": false,
"shorthand": true,
"key": {
"type": "Identifier",
"start": 15,
"end": 20,
"loc": {
"start": {
"line": 1,
"column": 15
},
"end": {
"line": 1,
"column": 20
},
"identifierName": "async"
},
"name": "async"
},
"value": {
"type": "AssignmentPattern",
"start": 15,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 15
},
"end": {
"line": 1,
"column": 27
}
},
"left": {
"type": "Identifier",
"start": 15,
"end": 20,
"loc": {
"start": {
"line": 1,
"column": 15
},
"end": {
"line": 1,
"column": 20
},
"identifierName": "async"
},
"name": "async"
},
"right": {
"type": "BooleanLiteral",
"start": 23,
"end": 27,
"loc": {
"start": {
"line": 1,
"column": 23
},
"end": {
"line": 1,
"column": 27
}
},
"value": true
}
},
"extra": {
"shorthand": true
}
}
]
}
],
"body": {
"type": "BlockStatement",
"start": 34,
"end": 36,
"loc": {
"start": {
"line": 1,
"column": 34
},
"end": {
"line": 1,
"column": 36
}
},
"body": [],
"directives": []
}
}
}
],
"kind": "const"
}
],
"directives": []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const foo = ({ async: bar }) => {};

0 comments on commit 9128821

Please sign in to comment.