[babel 8] Disallow sequence expressions in JSX expression containers (#12447)
* jsx: fix sequence expression at JSXAttributeValue (#8787) * jsx: fix sequence expression at JSXAttributeValue * Change logic for detecting unparenthesized expressions * use parseMaybeAssign instead of custom error handling Co-authored-by: Daniel Tschinder <daniel@tschinder.de> Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> * I'm not good at booleans * Format * Throw a recoverable error Co-authored-by: Bruno Macabeus <macabeus@users.noreply.github.com> Co-authored-by: Daniel Tschinder <daniel@tschinder.de>
This commit is contained in:
1
packages/babel-parser/test/fixtures/jsx/basic/sequence-expression/input.js
vendored
Normal file
1
packages/babel-parser/test/fixtures/jsx/basic/sequence-expression/input.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<div>{(console.log('foo'), JSON.stringify(props))}</div>
|
||||
113
packages/babel-parser/test/fixtures/jsx/basic/sequence-expression/output.json
vendored
Normal file
113
packages/babel-parser/test/fixtures/jsx/basic/sequence-expression/output.json
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
{
|
||||
"type": "File",
|
||||
"start":0,"end":56,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":56}},
|
||||
"program": {
|
||||
"type": "Program",
|
||||
"start":0,"end":56,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":56}},
|
||||
"sourceType": "script",
|
||||
"interpreter": null,
|
||||
"body": [
|
||||
{
|
||||
"type": "ExpressionStatement",
|
||||
"start":0,"end":56,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":56}},
|
||||
"expression": {
|
||||
"type": "JSXElement",
|
||||
"start":0,"end":56,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":56}},
|
||||
"openingElement": {
|
||||
"type": "JSXOpeningElement",
|
||||
"start":0,"end":5,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":5}},
|
||||
"name": {
|
||||
"type": "JSXIdentifier",
|
||||
"start":1,"end":4,"loc":{"start":{"line":1,"column":1},"end":{"line":1,"column":4}},
|
||||
"name": "div"
|
||||
},
|
||||
"attributes": [],
|
||||
"selfClosing": false
|
||||
},
|
||||
"closingElement": {
|
||||
"type": "JSXClosingElement",
|
||||
"start":50,"end":56,"loc":{"start":{"line":1,"column":50},"end":{"line":1,"column":56}},
|
||||
"name": {
|
||||
"type": "JSXIdentifier",
|
||||
"start":52,"end":55,"loc":{"start":{"line":1,"column":52},"end":{"line":1,"column":55}},
|
||||
"name": "div"
|
||||
}
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "JSXExpressionContainer",
|
||||
"start":5,"end":50,"loc":{"start":{"line":1,"column":5},"end":{"line":1,"column":50}},
|
||||
"expression": {
|
||||
"type": "SequenceExpression",
|
||||
"start":7,"end":48,"loc":{"start":{"line":1,"column":7},"end":{"line":1,"column":48}},
|
||||
"extra": {
|
||||
"parenthesized": true,
|
||||
"parenStart": 6
|
||||
},
|
||||
"expressions": [
|
||||
{
|
||||
"type": "CallExpression",
|
||||
"start":7,"end":25,"loc":{"start":{"line":1,"column":7},"end":{"line":1,"column":25}},
|
||||
"callee": {
|
||||
"type": "MemberExpression",
|
||||
"start":7,"end":18,"loc":{"start":{"line":1,"column":7},"end":{"line":1,"column":18}},
|
||||
"object": {
|
||||
"type": "Identifier",
|
||||
"start":7,"end":14,"loc":{"start":{"line":1,"column":7},"end":{"line":1,"column":14},"identifierName":"console"},
|
||||
"name": "console"
|
||||
},
|
||||
"computed": false,
|
||||
"property": {
|
||||
"type": "Identifier",
|
||||
"start":15,"end":18,"loc":{"start":{"line":1,"column":15},"end":{"line":1,"column":18},"identifierName":"log"},
|
||||
"name": "log"
|
||||
}
|
||||
},
|
||||
"arguments": [
|
||||
{
|
||||
"type": "StringLiteral",
|
||||
"start":19,"end":24,"loc":{"start":{"line":1,"column":19},"end":{"line":1,"column":24}},
|
||||
"extra": {
|
||||
"rawValue": "foo",
|
||||
"raw": "'foo'"
|
||||
},
|
||||
"value": "foo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "CallExpression",
|
||||
"start":27,"end":48,"loc":{"start":{"line":1,"column":27},"end":{"line":1,"column":48}},
|
||||
"callee": {
|
||||
"type": "MemberExpression",
|
||||
"start":27,"end":41,"loc":{"start":{"line":1,"column":27},"end":{"line":1,"column":41}},
|
||||
"object": {
|
||||
"type": "Identifier",
|
||||
"start":27,"end":31,"loc":{"start":{"line":1,"column":27},"end":{"line":1,"column":31},"identifierName":"JSON"},
|
||||
"name": "JSON"
|
||||
},
|
||||
"computed": false,
|
||||
"property": {
|
||||
"type": "Identifier",
|
||||
"start":32,"end":41,"loc":{"start":{"line":1,"column":32},"end":{"line":1,"column":41},"identifierName":"stringify"},
|
||||
"name": "stringify"
|
||||
}
|
||||
},
|
||||
"arguments": [
|
||||
{
|
||||
"type": "Identifier",
|
||||
"start":42,"end":47,"loc":{"start":{"line":1,"column":42},"end":{"line":1,"column":47},"identifierName":"props"},
|
||||
"name": "props"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"directives": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user