swc/crates/swc_ecma_parser/tests/tsc/topLevelAmbientModule.json
Donny/강동윤 3958f1792c
refactor(es/ast): Remove unused fields (#7518)
**Related issue:**

 - Closes #7347.
 - Closes #7487.
2023-06-12 08:02:34 +00:00

216 lines
5.0 KiB
JSON

{
"type": "Module",
"span": {
"start": 45,
"end": 198,
"ctxt": 0
},
"body": [
{
"type": "TsModuleDeclaration",
"span": {
"start": 45,
"end": 92,
"ctxt": 0
},
"declare": true,
"global": false,
"id": {
"type": "StringLiteral",
"span": {
"start": 60,
"end": 65,
"ctxt": 0
},
"value": "foo",
"raw": "\"foo\""
},
"body": {
"type": "TsModuleBlock",
"span": {
"start": 66,
"end": 92,
"ctxt": 0
},
"body": [
{
"type": "ExportDeclaration",
"span": {
"start": 69,
"end": 90,
"ctxt": 0
},
"declaration": {
"type": "VariableDeclaration",
"span": {
"start": 76,
"end": 90,
"ctxt": 0
},
"kind": "var",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 80,
"end": 89,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 80,
"end": 81,
"ctxt": 0
},
"value": "x",
"optional": false,
"typeAnnotation": {
"type": "TsTypeAnnotation",
"span": {
"start": 81,
"end": 89,
"ctxt": 0
},
"typeAnnotation": {
"type": "TsKeywordType",
"span": {
"start": 83,
"end": 89,
"ctxt": 0
},
"kind": "number"
}
}
},
"init": null,
"definite": false
}
]
}
}
]
}
},
{
"type": "TsImportEqualsDeclaration",
"span": {
"start": 150,
"end": 178,
"ctxt": 0
},
"isExport": false,
"isTypeOnly": false,
"id": {
"type": "Identifier",
"span": {
"start": 157,
"end": 160,
"ctxt": 0
},
"value": "foo",
"optional": false
},
"moduleRef": {
"type": "TsExternalModuleReference",
"span": {
"start": 163,
"end": 177,
"ctxt": 0
},
"expression": {
"type": "StringLiteral",
"span": {
"start": 171,
"end": 176,
"ctxt": 0
},
"value": "foo",
"raw": "\"foo\""
}
}
},
{
"type": "VariableDeclaration",
"span": {
"start": 179,
"end": 198,
"ctxt": 0
},
"kind": "var",
"declare": false,
"declarations": [
{
"type": "VariableDeclarator",
"span": {
"start": 183,
"end": 197,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 183,
"end": 184,
"ctxt": 0
},
"value": "z",
"optional": false,
"typeAnnotation": null
},
"init": {
"type": "BinaryExpression",
"span": {
"start": 187,
"end": 197,
"ctxt": 0
},
"operator": "+",
"left": {
"type": "MemberExpression",
"span": {
"start": 187,
"end": 192,
"ctxt": 0
},
"object": {
"type": "Identifier",
"span": {
"start": 187,
"end": 190,
"ctxt": 0
},
"value": "foo",
"optional": false
},
"property": {
"type": "Identifier",
"span": {
"start": 191,
"end": 192,
"ctxt": 0
},
"value": "x",
"optional": false
}
},
"right": {
"type": "NumericLiteral",
"span": {
"start": 195,
"end": 197,
"ctxt": 0
},
"value": 10.0,
"raw": "10"
}
},
"definite": false
}
]
}
],
"interpreter": null
}