swc/crates/swc_ecma_parser/tests/tsc/for-of58.json
2023-03-12 04:50:28 +00:00

410 lines
9.9 KiB
JSON

{
"type": "Script",
"span": {
"start": 17,
"end": 142,
"ctxt": 0
},
"body": [
{
"type": "TsTypeAliasDeclaration",
"span": {
"start": 17,
"end": 37,
"ctxt": 0
},
"declare": false,
"id": {
"type": "Identifier",
"span": {
"start": 22,
"end": 23,
"ctxt": 0
},
"value": "X",
"optional": false
},
"typeParams": null,
"typeAnnotation": {
"type": "TsTypeLiteral",
"span": {
"start": 26,
"end": 36,
"ctxt": 0
},
"members": [
{
"type": "TsPropertySignature",
"span": {
"start": 28,
"end": 34,
"ctxt": 0
},
"readonly": false,
"key": {
"type": "Identifier",
"span": {
"start": 28,
"end": 29,
"ctxt": 0
},
"value": "x",
"optional": false
},
"computed": false,
"optional": false,
"init": null,
"params": [],
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 29,
"end": 34,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsLiteralType",
"span": {
"start": 31,
"end": 34,
"ctxt": 0
},
"literal": {
"type": "StringLiteral",
"span": {
"start": 31,
"end": 34,
"ctxt": 0
},
"value": "x",
"raw": "'x'"
}
}
},
"typeParams": null
}
]
}
},
{
"type": "TsTypeAliasDeclaration",
"span": {
"start": 38,
"end": 58,
"ctxt": 0
},
"declare": false,
"id": {
"type": "Identifier",
"span": {
"start": 43,
"end": 44,
"ctxt": 0
},
"value": "Y",
"optional": false
},
"typeParams": null,
"typeAnnotation": {
"type": "TsTypeLiteral",
"span": {
"start": 47,
"end": 57,
"ctxt": 0
},
"members": [
{
"type": "TsPropertySignature",
"span": {
"start": 49,
"end": 55,
"ctxt": 0
},
"readonly": false,
"key": {
"type": "Identifier",
"span": {
"start": 49,
"end": 50,
"ctxt": 0
},
"value": "y",
"optional": false
},
"computed": false,
"optional": false,
"init": null,
"params": [],
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 50,
"end": 55,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsLiteralType",
"span": {
"start": 52,
"end": 55,
"ctxt": 0
},
"literal": {
"type": "StringLiteral",
"span": {
"start": 52,
"end": 55,
"ctxt": 0
},
"value": "y",
"raw": "'y'"
}
}
},
"typeParams": null
}
]
}
},
{
"type": "VariableDeclaration",
"span": {
"start": 60,
"end": 89,
"ctxt": 0
},
"kind": "const",
"declare": true,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 74,
"end": 88,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 74,
"end": 77,
"ctxt": 0
},
"value": "arr",
"optional": false,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 77,
"end": 88,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsIntersectionType",
"span": {
"start": 79,
"end": 88,
"ctxt": 0
},
"types": [
{
"type": "TsArrayType",
"span": {
"start": 79,
"end": 82,
"ctxt": 0
},
"elemType": {
"type": "TsTypeReference",
"span": {
"start": 79,
"end": 80,
"ctxt": 0
},
"typeName": {
"type": "Identifier",
"span": {
"start": 79,
"end": 80,
"ctxt": 0
},
"value": "X",
"optional": false
},
"typeParams": null
}
},
{
"type": "TsArrayType",
"span": {
"start": 85,
"end": 88,
"ctxt": 0
},
"elemType": {
"type": "TsTypeReference",
"span": {
"start": 85,
"end": 86,
"ctxt": 0
},
"typeName": {
"type": "Identifier",
"span": {
"start": 85,
"end": 86,
"ctxt": 0
},
"value": "Y",
"optional": false
},
"typeParams": null
}
}
]
}
}
},
"init": null,
"definite": false
}
]
},
{
"type": "ForOfStatement",
"span": {
"start": 91,
"end": 142,
"ctxt": 0
},
"await": false,
"left": {
"type": "VariableDeclaration",
"span": {
"start": 96,
"end": 106,
"ctxt": 0
},
"kind": "const",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 102,
"end": 106,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 102,
"end": 106,
"ctxt": 0
},
"value": "item",
"optional": false,
"typeAnnotation": null
},
"init": null,
"definite": false
}
]
},
"right": {
"type": "Identifier",
"span": {
"start": 110,
"end": 113,
"ctxt": 0
},
"value": "arr",
"optional": false
},
"body": {
"type": "BlockStatement",
"span": {
"start": 115,
"end": 142,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 121,
"end": 128,
"ctxt": 0
},
"expression": {
"type": "MemberExpression",
"span": {
"start": 121,
"end": 127,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 121,
"end": 125,
"ctxt": 0
},
"value": "item",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 126,
"end": 127,
"ctxt": 0
},
"value": "x",
"optional": false
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 133,
"end": 140,
"ctxt": 0
},
"expression": {
"type": "MemberExpression",
"span": {
"start": 133,
"end": 139,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 133,
"end": 137,
"ctxt": 0
},
"value": "item",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 138,
"end": 139,
"ctxt": 0
},
"value": "y",
"optional": false
}
}
}
]
}
}
],
"interpreter": null
}