swc/crates/swc_ecma_parser/tests/tsc/controlFlowCommaOperator.json
2022-02-04 17:08:38 +09:00

711 lines
20 KiB
JSON

{
"type": "Script",
"span": {
"start": 0,
"end": 522,
"ctxt": 0
},
"body": [
{
"type": "FunctionDeclaration",
"identifier": {
"type": "Identifier",
"span": {
"start": 9,
"end": 10,
"ctxt": 0
},
"value": "f",
"optional": false
},
"declare": false,
"params": [
{
"type": "Parameter",
"span": {
"start": 11,
"end": 39,
"ctxt": 0
},
"decorators": [],
"pat": {
"type": "Identifier",
"span": {
"start": 11,
"end": 39,
"ctxt": 0
},
"value": "x",
"optional": false,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 12,
"end": 39,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsUnionType",
"span": {
"start": 14,
"end": 39,
"ctxt": 0
},
"types": [
{
"type": "TsKeywordType",
"span": {
"start": 14,
"end": 20,
"ctxt": 0
},
"kind": "string"
},
{
"type": "TsKeywordType",
"span": {
"start": 23,
"end": 29,
"ctxt": 0
},
"kind": "number"
},
{
"type": "TsKeywordType",
"span": {
"start": 32,
"end": 39,
"ctxt": 0
},
"kind": "boolean"
}
]
}
}
}
}
],
"decorators": [],
"span": {
"start": 0,
"end": 522,
"ctxt": 0
},
"body": {
"type": "BlockStatement",
"span": {
"start": 41,
"end": 522,
"ctxt": 0
},
"stmts": [
{
"type": "VariableDeclaration",
"span": {
"start": 47,
"end": 88,
"ctxt": 0
},
"kind": "let",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 51,
"end": 87,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 51,
"end": 52,
"ctxt": 0
},
"value": "y",
"optional": false,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 52,
"end": 79,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsUnionType",
"span": {
"start": 54,
"end": 79,
"ctxt": 0
},
"types": [
{
"type": "TsKeywordType",
"span": {
"start": 54,
"end": 60,
"ctxt": 0
},
"kind": "string"
},
{
"type": "TsKeywordType",
"span": {
"start": 63,
"end": 69,
"ctxt": 0
},
"kind": "number"
},
{
"type": "TsKeywordType",
"span": {
"start": 72,
"end": 79,
"ctxt": 0
},
"kind": "boolean"
}
]
}
}
},
"init": {
"type": "BooleanLiteral",
"span": {
"start": 82,
"end": 87,
"ctxt": 0
},
"value": false
},
"definite": false
}
]
},
{
"type": "VariableDeclaration",
"span": {
"start": 93,
"end": 134,
"ctxt": 0
},
"kind": "let",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 97,
"end": 133,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 97,
"end": 98,
"ctxt": 0
},
"value": "z",
"optional": false,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 98,
"end": 125,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsUnionType",
"span": {
"start": 100,
"end": 125,
"ctxt": 0
},
"types": [
{
"type": "TsKeywordType",
"span": {
"start": 100,
"end": 106,
"ctxt": 0
},
"kind": "string"
},
{
"type": "TsKeywordType",
"span": {
"start": 109,
"end": 115,
"ctxt": 0
},
"kind": "number"
},
{
"type": "TsKeywordType",
"span": {
"start": 118,
"end": 125,
"ctxt": 0
},
"kind": "boolean"
}
]
}
}
},
"init": {
"type": "BooleanLiteral",
"span": {
"start": 128,
"end": 133,
"ctxt": 0
},
"value": false
},
"definite": false
}
]
},
{
"type": "IfStatement",
"span": {
"start": 139,
"end": 440,
"ctxt": 0
},
"test": {
"type": "SequenceExpression",
"span": {
"start": 143,
"end": 172,
"ctxt": 0
},
"expressions": [
{
"type": "AssignmentExpression",
"span": {
"start": 143,
"end": 149,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "Identifier",
"span": {
"start": 143,
"end": 144,
"ctxt": 0
},
"value": "y",
"optional": false,
"typeAnnotation": null
},
"right": {
"type": "StringLiteral",
"span": {
"start": 147,
"end": 149,
"ctxt": 0
},
"value": "",
"hasEscape": false,
"kind": {
"type": "normal",
"containsQuote": true
}
}
},
{
"type": "BinaryExpression",
"span": {
"start": 151,
"end": 172,
"ctxt": 0
},
"operator": "===",
"left": {
"type": "UnaryExpression",
"span": {
"start": 151,
"end": 159,
"ctxt": 0
},
"operator": "typeof",
"argument": {
"type": "Identifier",
"span": {
"start": 158,
"end": 159,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "StringLiteral",
"span": {
"start": 164,
"end": 172,
"ctxt": 0
},
"value": "string",
"hasEscape": false,
"kind": {
"type": "normal",
"containsQuote": true
}
}
}
]
},
"consequent": {
"type": "BlockStatement",
"span": {
"start": 174,
"end": 245,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 184,
"end": 186,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 184,
"end": 185,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 205,
"end": 207,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 205,
"end": 206,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 226,
"end": 228,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 226,
"end": 227,
"ctxt": 0
},
"value": "z",
"optional": false
}
}
]
},
"alternate": {
"type": "IfStatement",
"span": {
"start": 255,
"end": 440,
"ctxt": 0
},
"test": {
"type": "SequenceExpression",
"span": {
"start": 259,
"end": 287,
"ctxt": 0
},
"expressions": [
{
"type": "AssignmentExpression",
"span": {
"start": 259,
"end": 264,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "Identifier",
"span": {
"start": 259,
"end": 260,
"ctxt": 0
},
"value": "z",
"optional": false,
"typeAnnotation": null
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 263,
"end": 264,
"ctxt": 0
},
"value": 1.0
}
},
{
"type": "BinaryExpression",
"span": {
"start": 266,
"end": 287,
"ctxt": 0
},
"operator": "===",
"left": {
"type": "UnaryExpression",
"span": {
"start": 266,
"end": 274,
"ctxt": 0
},
"operator": "typeof",
"argument": {
"type": "Identifier",
"span": {
"start": 273,
"end": 274,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "StringLiteral",
"span": {
"start": 279,
"end": 287,
"ctxt": 0
},
"value": "number",
"hasEscape": false,
"kind": {
"type": "normal",
"containsQuote": true
}
}
}
]
},
"consequent": {
"type": "BlockStatement",
"span": {
"start": 289,
"end": 359,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 299,
"end": 301,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 299,
"end": 300,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 320,
"end": 322,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 320,
"end": 321,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 341,
"end": 343,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 341,
"end": 342,
"ctxt": 0
},
"value": "z",
"optional": false
}
}
]
},
"alternate": {
"type": "BlockStatement",
"span": {
"start": 369,
"end": 440,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 379,
"end": 381,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 379,
"end": 380,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 401,
"end": 403,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 401,
"end": 402,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 422,
"end": 424,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 422,
"end": 423,
"ctxt": 0
},
"value": "z",
"optional": false
}
}
]
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 445,
"end": 447,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 445,
"end": 446,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 481,
"end": 483,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 481,
"end": 482,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 498,
"end": 500,
"ctxt": 0
},
"expression": {
"type": "Identifier",
"span": {
"start": 498,
"end": 499,
"ctxt": 0
},
"value": "z",
"optional": false
}
}
]
},
"generator": false,
"async": false,
"typeParameters": null,
"returnType": null
}
],
"interpreter": null
}