swc/crates/swc_ecma_parser/tests/tsc/propertyAssignmentOnParenthesizedNumber.json

124 lines
2.6 KiB
JSON
Raw Normal View History

{
"type": "Script",
"span": {
"start": 81,
"end": 175,
"ctxt": 0
},
"body": [
{
"type": "VariableDeclaration",
"span": {
"start": 81,
"end": 92,
"ctxt": 0
},
"kind": "var",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 85,
"end": 91,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 85,
"end": 86,
"ctxt": 0
},
"value": "x",
"optional": false,
"typeAnnotation": null
},
"init": {
"type": "ObjectExpression",
"span": {
"start": 89,
"end": 91,
"ctxt": 0
},
"properties": []
},
"definite": false
}
]
},
{
"type": "ExpressionStatement",
"span": {
"start": 164,
"end": 175,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 164,
"end": 174,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 164,
"end": 170,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 164,
"end": 165,
"ctxt": 0
},
"value": "x",
"optional": false
},
"property": {
"type": "Computed",
"span": {
"start": 165,
"end": 170,
"ctxt": 0
},
"expression": {
"type": "ParenthesisExpression",
"span": {
"start": 166,
"end": 169,
"ctxt": 0
},
"expression": {
"type": "NumericLiteral",
"span": {
"start": 167,
"end": 168,
"ctxt": 0
},
"value": 0.0,
"raw": "0"
}
}
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 173,
"end": 174,
"ctxt": 0
},
"value": 1.0,
"raw": "1"
}
}
}
],
"interpreter": null
}