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

1212 lines
44 KiB
JSON

{
"type": "Module",
"span": {
"start": 23,
"end": 543,
"ctxt": 0
},
"body": [
{
"type": "TsImportEqualsDeclaration",
"span": {
"start": 23,
"end": 55,
"ctxt": 0
},
"declare": false,
"isExport": false,
"isTypeOnly": false,
"id": {
"type": "Identifier",
"span": {
"start": 30,
"end": 34,
"ctxt": 0
},
"value": "foo2",
"optional": false
},
"moduleRef": {
"type": "TsExternalModuleReference",
"span": {
"start": 37,
"end": 54,
"ctxt": 0
},
"expression": {
"type": "StringLiteral",
"span": {
"start": 45,
"end": 53,
"ctxt": 0
},
"value": "./foo2",
"raw": "'./foo2'"
}
}
},
{
"type": "ExportDeclaration",
"span": {
"start": 56,
"end": 234,
"ctxt": 0
},
"declaration": {
"type": "TsModuleDeclaration",
"span": {
"start": 63,
"end": 234,
"ctxt": 0
},
"declare": false,
"global": false,
"id": {
"type": "Identifier",
"span": {
"start": 70,
"end": 72,
"ctxt": 0
},
"value": "M1",
"optional": false
},
"body": {
"type": "TsModuleBlock",
"span": {
"start": 73,
"end": 234,
"ctxt": 0
},
"body": [
{
"type": "ExportDeclaration",
"span": {
"start": 76,
"end": 232,
"ctxt": 0
},
"declaration": {
"type": "ClassDeclaration",
"identifier": {
"type": "Identifier",
"span": {
"start": 89,
"end": 91,
"ctxt": 0
},
"value": "C1",
"optional": false
},
"declare": false,
"span": {
"start": 83,
"end": 232,
"ctxt": 0
},
"decorators": [],
"body": [
{
"type": "ClassProperty",
"span": {
"start": 96,
"end": 111,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 96,
"end": 98,
"ctxt": 0
},
"value": "m1",
"optional": false
},
"value": null,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 98,
"end": 110,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsTypeReference",
"span": {
"start": 100,
"end": 110,
"ctxt": 0
},
"typeName": {
"type": "TsQualifiedName",
"left": {
"type": "TsQualifiedName",
"left": {
"type": "Identifier",
"span": {
"start": 100,
"end": 104,
"ctxt": 0
},
"value": "foo2",
"optional": false
},
"right": {
"type": "Identifier",
"span": {
"start": 105,
"end": 107,
"ctxt": 0
},
"value": "M1",
"optional": false
}
},
"right": {
"type": "Identifier",
"span": {
"start": 108,
"end": 110,
"ctxt": 0
},
"value": "C1",
"optional": false
}
},
"typeParams": null
}
},
"isStatic": false,
"decorators": [],
"accessibility": null,
"isAbstract": false,
"isOptional": false,
"isOverride": false,
"readonly": false,
"declare": false,
"definite": false
},
{
"type": "ClassProperty",
"span": {
"start": 114,
"end": 124,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 114,
"end": 115,
"ctxt": 0
},
"value": "x",
"optional": false
},
"value": null,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 115,
"end": 123,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsKeywordType",
"span": {
"start": 117,
"end": 123,
"ctxt": 0
},
"kind": "number"
}
},
"isStatic": false,
"decorators": [],
"accessibility": null,
"isAbstract": false,
"isOptional": false,
"isOverride": false,
"readonly": false,
"declare": false,
"definite": false
},
{
"type": "Constructor",
"span": {
"start": 127,
"end": 229,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 127,
"end": 138,
"ctxt": 0
},
"value": "constructor",
"optional": false
},
"params": [],
"body": {
"type": "BlockStatement",
"span": {
"start": 140,
"end": 229,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 145,
"end": 172,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 145,
"end": 171,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 145,
"end": 152,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 145,
"end": 149,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 150,
"end": 152,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"right": {
"type": "NewExpression",
"span": {
"start": 155,
"end": 171,
"ctxt": 0
},
"callee": {
"type": "MemberExpression",
"span": {
"start": 159,
"end": 169,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 159,
"end": 166,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 159,
"end": 163,
"ctxt": 0
},
"value": "foo2",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 164,
"end": 166,
"ctxt": 0
},
"value": "M1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 167,
"end": 169,
"ctxt": 0
},
"value": "C1",
"optional": false
}
},
"arguments": [],
"typeArguments": null
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 176,
"end": 191,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 176,
"end": 190,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 176,
"end": 185,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 176,
"end": 183,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 176,
"end": 180,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 181,
"end": 183,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 184,
"end": 185,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 188,
"end": 190,
"ctxt": 0
},
"value": 10.0,
"raw": "10"
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 201,
"end": 216,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 201,
"end": 215,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 201,
"end": 210,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 201,
"end": 208,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 201,
"end": 205,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 206,
"end": 208,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 209,
"end": 210,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 213,
"end": 215,
"ctxt": 0
},
"value": 20.0,
"raw": "20"
}
}
}
]
},
"accessibility": null,
"isOptional": false
}
],
"superClass": null,
"isAbstract": false,
"typeParams": null,
"superTypeParams": null,
"implements": []
}
}
]
}
}
},
{
"type": "TsImportEqualsDeclaration",
"span": {
"start": 258,
"end": 290,
"ctxt": 0
},
"declare": false,
"isExport": false,
"isTypeOnly": false,
"id": {
"type": "Identifier",
"span": {
"start": 265,
"end": 269,
"ctxt": 0
},
"value": "foo1",
"optional": false
},
"moduleRef": {
"type": "TsExternalModuleReference",
"span": {
"start": 272,
"end": 289,
"ctxt": 0
},
"expression": {
"type": "StringLiteral",
"span": {
"start": 280,
"end": 288,
"ctxt": 0
},
"value": "./foo1",
"raw": "'./foo1'"
}
}
},
{
"type": "ExportDeclaration",
"span": {
"start": 291,
"end": 543,
"ctxt": 0
},
"declaration": {
"type": "TsModuleDeclaration",
"span": {
"start": 298,
"end": 543,
"ctxt": 0
},
"declare": false,
"global": false,
"id": {
"type": "Identifier",
"span": {
"start": 305,
"end": 307,
"ctxt": 0
},
"value": "M1",
"optional": false
},
"body": {
"type": "TsModuleBlock",
"span": {
"start": 308,
"end": 543,
"ctxt": 0
},
"body": [
{
"type": "ExportDeclaration",
"span": {
"start": 311,
"end": 541,
"ctxt": 0
},
"declaration": {
"type": "ClassDeclaration",
"identifier": {
"type": "Identifier",
"span": {
"start": 324,
"end": 326,
"ctxt": 0
},
"value": "C1",
"optional": false
},
"declare": false,
"span": {
"start": 318,
"end": 541,
"ctxt": 0
},
"decorators": [],
"body": [
{
"type": "ClassProperty",
"span": {
"start": 331,
"end": 346,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 331,
"end": 333,
"ctxt": 0
},
"value": "m1",
"optional": false
},
"value": null,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 333,
"end": 345,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsTypeReference",
"span": {
"start": 335,
"end": 345,
"ctxt": 0
},
"typeName": {
"type": "TsQualifiedName",
"left": {
"type": "TsQualifiedName",
"left": {
"type": "Identifier",
"span": {
"start": 335,
"end": 339,
"ctxt": 0
},
"value": "foo1",
"optional": false
},
"right": {
"type": "Identifier",
"span": {
"start": 340,
"end": 342,
"ctxt": 0
},
"value": "M1",
"optional": false
}
},
"right": {
"type": "Identifier",
"span": {
"start": 343,
"end": 345,
"ctxt": 0
},
"value": "C1",
"optional": false
}
},
"typeParams": null
}
},
"isStatic": false,
"decorators": [],
"accessibility": null,
"isAbstract": false,
"isOptional": false,
"isOverride": false,
"readonly": false,
"declare": false,
"definite": false
},
{
"type": "ClassProperty",
"span": {
"start": 349,
"end": 358,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 349,
"end": 350,
"ctxt": 0
},
"value": "y",
"optional": false
},
"value": null,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 350,
"end": 358,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsKeywordType",
"span": {
"start": 352,
"end": 358,
"ctxt": 0
},
"kind": "number"
}
},
"isStatic": false,
"decorators": [],
"accessibility": null,
"isAbstract": false,
"isOptional": false,
"isOverride": false,
"readonly": false,
"declare": false,
"definite": false
},
{
"type": "Constructor",
"span": {
"start": 361,
"end": 538,
"ctxt": 0
},
"key": {
"type": "Identifier",
"span": {
"start": 361,
"end": 372,
"ctxt": 0
},
"value": "constructor",
"optional": false
},
"params": [],
"body": {
"type": "BlockStatement",
"span": {
"start": 374,
"end": 538,
"ctxt": 0
},
"stmts": [
{
"type": "ExpressionStatement",
"span": {
"start": 379,
"end": 406,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 379,
"end": 405,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 379,
"end": 386,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 379,
"end": 383,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 384,
"end": 386,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"right": {
"type": "NewExpression",
"span": {
"start": 389,
"end": 405,
"ctxt": 0
},
"callee": {
"type": "MemberExpression",
"span": {
"start": 393,
"end": 403,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 393,
"end": 400,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 393,
"end": 397,
"ctxt": 0
},
"value": "foo1",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 398,
"end": 400,
"ctxt": 0
},
"value": "M1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 401,
"end": 403,
"ctxt": 0
},
"value": "C1",
"optional": false
}
},
"arguments": [],
"typeArguments": null
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 410,
"end": 425,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 410,
"end": 424,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 410,
"end": 419,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 410,
"end": 417,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 410,
"end": 414,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 415,
"end": 417,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 418,
"end": 419,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 422,
"end": 424,
"ctxt": 0
},
"value": 10.0,
"raw": "10"
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 438,
"end": 453,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 438,
"end": 452,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 438,
"end": 447,
"ctxt": 0
},
"object": {
"type": "MemberExpression",
"span": {
"start": 438,
"end": 445,
"ctxt": 0
},
"object": {
"type": "ThisExpression",
"span": {
"start": 438,
"end": 442,
"ctxt": 0
}
},
"property": {
"type": "Identifier",
"span": {
"start": 443,
"end": 445,
"ctxt": 0
},
"value": "m1",
"optional": false
}
},
"property": {
"type": "Identifier",
"span": {
"start": 446,
"end": 447,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 450,
"end": 452,
"ctxt": 0
},
"value": 20.0,
"raw": "20"
}
}
},
{
"type": "VariableDeclaration",
"span": {
"start": 464,
"end": 486,
"ctxt": 0
},
"kind": "var",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 468,
"end": 485,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 468,
"end": 471,
"ctxt": 0
},
"value": "tmp",
"optional": false,
"typeAnnotation": null
},
"init": {
"type": "NewExpression",
"span": {
"start": 474,
"end": 485,
"ctxt": 0
},
"callee": {
"type": "MemberExpression",
"span": {
"start": 478,
"end": 483,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 478,
"end": 480,
"ctxt": 0
},
"value": "M1",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 481,
"end": 483,
"ctxt": 0
},
"value": "C1",
"optional": false
}
},
"arguments": [],
"typeArguments": null
},
"definite": false
}
]
},
{
"type": "ExpressionStatement",
"span": {
"start": 490,
"end": 501,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 490,
"end": 500,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 490,
"end": 495,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 490,
"end": 493,
"ctxt": 0
},
"value": "tmp",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 494,
"end": 495,
"ctxt": 0
},
"value": "y",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 498,
"end": 500,
"ctxt": 0
},
"value": 10.0,
"raw": "10"
}
}
},
{
"type": "ExpressionStatement",
"span": {
"start": 511,
"end": 522,
"ctxt": 0
},
"expression": {
"type": "AssignmentExpression",
"span": {
"start": 511,
"end": 521,
"ctxt": 0
},
"operator": "=",
"left": {
"type": "MemberExpression",
"span": {
"start": 511,
"end": 516,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 511,
"end": 514,
"ctxt": 0
},
"value": "tmp",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 515,
"end": 516,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 519,
"end": 521,
"ctxt": 0
},
"value": 20.0,
"raw": "20"
}
}
}
]
},
"accessibility": null,
"isOptional": false
}
],
"superClass": null,
"isAbstract": false,
"typeParams": null,
"superTypeParams": null,
"implements": []
}
}
]
}
}
}
],
"interpreter": null
}