refactor: add recoverable error on accessorIsGenerator (#11921)
* refactor: add recoverable error on accessorIsGenerator * Update packages/babel-parser/src/parser/error-message.js Co-authored-by: Brian Ng <bng412@gmail.com> * Apply suggestions from code review Co-authored-by: Brian Ng <bng412@gmail.com>
This commit is contained in:
4
packages/babel-parser/test/fixtures/es2015/object/invalid-accessor-generator/input.js
vendored
Normal file
4
packages/babel-parser/test/fixtures/es2015/object/invalid-accessor-generator/input.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
({
|
||||
get *iterator() { },
|
||||
set *iterator(iter) { }
|
||||
})
|
||||
81
packages/babel-parser/test/fixtures/es2015/object/invalid-accessor-generator/output.json
vendored
Normal file
81
packages/babel-parser/test/fixtures/es2015/object/invalid-accessor-generator/output.json
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"type": "File",
|
||||
"start":0,"end":58,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
|
||||
"errors": [
|
||||
"SyntaxError: A getter cannot be a generator (2:9)",
|
||||
"SyntaxError: A setter cannot be a generator (3:9)"
|
||||
],
|
||||
"program": {
|
||||
"type": "Program",
|
||||
"start":0,"end":58,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
|
||||
"sourceType": "script",
|
||||
"interpreter": null,
|
||||
"body": [
|
||||
{
|
||||
"type": "ExpressionStatement",
|
||||
"start":0,"end":58,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
|
||||
"expression": {
|
||||
"type": "ObjectExpression",
|
||||
"start":1,"end":57,"loc":{"start":{"line":1,"column":1},"end":{"line":4,"column":1}},
|
||||
"properties": [
|
||||
{
|
||||
"type": "ObjectMethod",
|
||||
"start":7,"end":26,"loc":{"start":{"line":2,"column":4},"end":{"line":2,"column":23}},
|
||||
"method": false,
|
||||
"key": {
|
||||
"type": "Identifier",
|
||||
"start":12,"end":20,"loc":{"start":{"line":2,"column":9},"end":{"line":2,"column":17},"identifierName":"iterator"},
|
||||
"name": "iterator"
|
||||
},
|
||||
"computed": false,
|
||||
"kind": "get",
|
||||
"id": null,
|
||||
"generator": false,
|
||||
"async": false,
|
||||
"params": [],
|
||||
"body": {
|
||||
"type": "BlockStatement",
|
||||
"start":23,"end":26,"loc":{"start":{"line":2,"column":20},"end":{"line":2,"column":23}},
|
||||
"body": [],
|
||||
"directives": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "ObjectMethod",
|
||||
"start":32,"end":55,"loc":{"start":{"line":3,"column":4},"end":{"line":3,"column":27}},
|
||||
"method": false,
|
||||
"key": {
|
||||
"type": "Identifier",
|
||||
"start":37,"end":45,"loc":{"start":{"line":3,"column":9},"end":{"line":3,"column":17},"identifierName":"iterator"},
|
||||
"name": "iterator"
|
||||
},
|
||||
"computed": false,
|
||||
"kind": "set",
|
||||
"id": null,
|
||||
"generator": false,
|
||||
"async": false,
|
||||
"params": [
|
||||
{
|
||||
"type": "Identifier",
|
||||
"start":46,"end":50,"loc":{"start":{"line":3,"column":18},"end":{"line":3,"column":22},"identifierName":"iter"},
|
||||
"name": "iter"
|
||||
}
|
||||
],
|
||||
"body": {
|
||||
"type": "BlockStatement",
|
||||
"start":52,"end":55,"loc":{"start":{"line":3,"column":24},"end":{"line":3,"column":27}},
|
||||
"body": [],
|
||||
"directives": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"extra": {
|
||||
"parenthesized": true,
|
||||
"parenStart": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"directives": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user