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

97 lines
2.2 KiB
JSON

{
"type": "Script",
"span": {
"start": 1,
"end": 32,
"ctxt": 0
},
"body": [
{
"type": "VariableDeclaration",
"span": {
"start": 1,
"end": 32,
"ctxt": 0
},
"kind": "var",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 5,
"end": 31,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 5,
"end": 6,
"ctxt": 0
},
"value": "x",
"optional": false,
"typeAnnotation": null
},
"init": {
"type": "TemplateLiteral",
"span": {
"start": 9,
"end": 31,
"ctxt": 0
},
"expressions": [
{
"type": "UnaryExpression",
"span": {
"start": 16,
"end": 25,
"ctxt": 0
},
"operator": "+",
"argument": {
"type": "Identifier",
"span": {
"start": 17,
"end": 25,
"ctxt": 0
},
"value": "Infinity",
"optional": false
}
}
],
"quasis": [
{
"type": "TemplateElement",
"span": {
"start": 10,
"end": 13,
"ctxt": 0
},
"tail": false,
"cooked": "abc",
"raw": "abc"
},
{
"type": "TemplateElement",
"span": {
"start": 27,
"end": 30,
"ctxt": 0
},
"tail": true,
"cooked": "def",
"raw": "def"
}
]
},
"definite": false
}
]
}
],
"interpreter": null
}