Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Throw on duplicate __proto__ props followed by assignment #13951

Merged
merged 2 commits into from Nov 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 7 additions & 6 deletions packages/babel-parser/src/parser/expression.js
Expand Up @@ -309,17 +309,18 @@ export default class ExpressionParser extends LValParser {

if (this.match(tt.eq)) {
node.left = this.toAssignable(left, /* isLHS */ true);
refExpressionErrors.doubleProto = -1; // reset because double __proto__ is valid in assignment expression

if (refExpressionErrors.doubleProto >= startPos) {
refExpressionErrors.doubleProto = -1; // reset because double __proto__ is valid in assignment expression
}
if (refExpressionErrors.shorthandAssign >= startPos) {
refExpressionErrors.shorthandAssign = -1; // reset because shorthand default was used correctly
}
} else {
node.left = left;
}

if (refExpressionErrors.shorthandAssign >= node.left.start) {
refExpressionErrors.shorthandAssign = -1; // reset because shorthand default was used correctly
}

this.checkLVal(left, "assignment expression");

this.next();
node.right = this.parseMaybeAssign();
return this.finishNode(node, "AssignmentExpression");
Expand Down
@@ -0,0 +1,5 @@
({
__proto__: a,
__proto__: a,
a: a = 1
})
@@ -0,0 +1,95 @@
{
"type": "File",
"start":0,"end":48,"loc":{"start":{"line":1,"column":0},"end":{"line":5,"column":2}},
"errors": [
"SyntaxError: Redefinition of __proto__ property. (3:2)"
],
"program": {
"type": "Program",
"start":0,"end":48,"loc":{"start":{"line":1,"column":0},"end":{"line":5,"column":2}},
"sourceType": "script",
"interpreter": null,
"body": [
{
"type": "ExpressionStatement",
"start":0,"end":48,"loc":{"start":{"line":1,"column":0},"end":{"line":5,"column":2}},
"expression": {
"type": "ObjectExpression",
"start":1,"end":47,"loc":{"start":{"line":1,"column":1},"end":{"line":5,"column":1}},
"properties": [
{
"type": "ObjectProperty",
"start":5,"end":17,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":14}},
"method": false,
"key": {
"type": "Identifier",
"start":5,"end":14,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":11},"identifierName":"__proto__"},
"name": "__proto__"
},
"computed": false,
"shorthand": false,
"value": {
"type": "Identifier",
"start":16,"end":17,"loc":{"start":{"line":2,"column":13},"end":{"line":2,"column":14},"identifierName":"a"},
"name": "a"
}
},
{
"type": "ObjectProperty",
"start":21,"end":33,"loc":{"start":{"line":3,"column":2},"end":{"line":3,"column":14}},
"method": false,
"key": {
"type": "Identifier",
"start":21,"end":30,"loc":{"start":{"line":3,"column":2},"end":{"line":3,"column":11},"identifierName":"__proto__"},
"name": "__proto__"
},
"computed": false,
"shorthand": false,
"value": {
"type": "Identifier",
"start":32,"end":33,"loc":{"start":{"line":3,"column":13},"end":{"line":3,"column":14},"identifierName":"a"},
"name": "a"
}
},
{
"type": "ObjectProperty",
"start":37,"end":45,"loc":{"start":{"line":4,"column":2},"end":{"line":4,"column":10}},
"method": false,
"key": {
"type": "Identifier",
"start":37,"end":38,"loc":{"start":{"line":4,"column":2},"end":{"line":4,"column":3},"identifierName":"a"},
"name": "a"
},
"computed": false,
"shorthand": false,
"value": {
"type": "AssignmentExpression",
"start":40,"end":45,"loc":{"start":{"line":4,"column":5},"end":{"line":4,"column":10}},
"operator": "=",
"left": {
"type": "Identifier",
"start":40,"end":41,"loc":{"start":{"line":4,"column":5},"end":{"line":4,"column":6},"identifierName":"a"},
"name": "a"
},
"right": {
"type": "NumericLiteral",
"start":44,"end":45,"loc":{"start":{"line":4,"column":9},"end":{"line":4,"column":10}},
"extra": {
"rawValue": 1,
"raw": "1"
},
"value": 1
}
}
}
],
"extra": {
"parenthesized": true,
"parenStart": 0
}
}
}
],
"directives": []
}
}
@@ -0,0 +1,4 @@
({
__proto__: a,
__proto__: a,
})
The-x-Theorist marked this conversation as resolved.
Show resolved Hide resolved
@@ -0,0 +1,65 @@
{
"type": "File",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
"errors": [
"SyntaxError: Redefinition of __proto__ property. (3:2)"
],
"program": {
"type": "Program",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
"sourceType": "script",
"interpreter": null,
"body": [
{
"type": "ExpressionStatement",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":4,"column":2}},
"expression": {
"type": "ObjectExpression",
"start":1,"end":36,"loc":{"start":{"line":1,"column":1},"end":{"line":4,"column":1}},
"properties": [
{
"type": "ObjectProperty",
"start":5,"end":17,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":14}},
"method": false,
"key": {
"type": "Identifier",
"start":5,"end":14,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":11},"identifierName":"__proto__"},
"name": "__proto__"
},
"computed": false,
"shorthand": false,
"value": {
"type": "Identifier",
"start":16,"end":17,"loc":{"start":{"line":2,"column":13},"end":{"line":2,"column":14},"identifierName":"a"},
"name": "a"
}
},
{
"type": "ObjectProperty",
"start":21,"end":33,"loc":{"start":{"line":3,"column":2},"end":{"line":3,"column":14}},
"method": false,
"key": {
"type": "Identifier",
"start":21,"end":30,"loc":{"start":{"line":3,"column":2},"end":{"line":3,"column":11},"identifierName":"__proto__"},
"name": "__proto__"
},
"computed": false,
"shorthand": false,
"value": {
"type": "Identifier",
"start":32,"end":33,"loc":{"start":{"line":3,"column":13},"end":{"line":3,"column":14},"identifierName":"a"},
"name": "a"
}
}
],
"extra": {
"trailingComma": 33,
"parenthesized": true,
"parenStart": 0
}
}
}
],
"directives": []
}
}

This file was deleted.

This file was deleted.