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

81 lines
1.5 KiB
JSON

{
"type": "Script",
"span": {
"start": 1,
"end": 28,
"ctxt": 0
},
"body": [
{
"type": "TsEnumDeclaration",
"span": {
"start": 1,
"end": 28,
"ctxt": 0
},
"declare": false,
"isConst": false,
"id": {
"type": "Identifier",
"span": {
"start": 6,
"end": 7,
"ctxt": 0
},
"value": "E",
"optional": false
},
"members": [
{
"type": "TsEnumMember",
"span": {
"start": 12,
"end": 19,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 12,
"end": 15,
"ctxt": 0
},
"value": "Foo",
"optional": false
},
"init": {
"type": "NumericLiteral",
"span": {
"start": 18,
"end": 19,
"ctxt": 0
},
"value": 1.0,
"raw": "1"
}
},
{
"type": "TsEnumMember",
"span": {
"start": 23,
"end": 26,
"ctxt": 0
},
"id": {
"type": "Identifier",
"span": {
"start": 23,
"end": 26,
"ctxt": 0
},
"value": "Bar",
"optional": false
},
"init": null
}
]
}
],
"interpreter": null
}