Huáng Jùnliàng a470f7b479
Recover from shorthand assign exprs (#13968)
* refactor: avoid duplicate property access

* refactor: tweak parseMember

* polish: recover from shorthand assign in exprs
2021-11-19 10:22:29 -05:00

71 lines
2.7 KiB
JSON

{
"type": "File",
"start":0,"end":31,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":31}},
"errors": [
"SyntaxError: Invalid shorthand property initializer. (1:21)"
],
"program": {
"type": "Program",
"start":0,"end":31,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":31}},
"sourceType": "script",
"interpreter": null,
"body": [
{
"type": "VariableDeclaration",
"start":0,"end":31,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":31}},
"declarations": [
{
"type": "VariableDeclarator",
"start":6,"end":30,"loc":{"start":{"line":1,"column":6},"end":{"line":1,"column":30}},
"id": {
"type": "Identifier",
"start":6,"end":9,"loc":{"start":{"line":1,"column":6},"end":{"line":1,"column":9},"identifierName":"foo"},
"name": "foo"
},
"init": {
"type": "ObjectExpression",
"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,
"key": {
"type": "Identifier",
"start":15,"end":20,"loc":{"start":{"line":1,"column":15},"end":{"line":1,"column":20},"identifierName":"async"},
"name": "async"
},
"computed": false,
"shorthand": true,
"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
}
}
],
"extra": {
"parenthesized": true,
"parenStart": 12
}
}
}
],
"kind": "const"
}
],
"directives": []
}
}