swc/ecmascript/parser/tests/jsx/basic/14/input.js.json
강동윤 76ce98b685
Implement serialize for ast nodes (#244)
swc_common:
 - implement Serialize / Deserialize for span

swc_ecma_parser:
 - use json instead of {:#?} while testing
 - update test references
2019-02-20 11:35:41 +09:00

86 lines
1.7 KiB
JSON

{
"type": "Module",
"span": {
"start": 0,
"end": 11,
"ctxt": 0
},
"body": [
{
"type": "JSXElement",
"span": {
"start": 0,
"end": 11,
"ctxt": 0
},
"opening": {
"type": "JSXOpeningElement",
"name": {
"type": "JSXMemberExpression",
"object": {
"span": {
"start": 1,
"end": 2,
"ctxt": 0
},
"value": "a",
"typeAnnotation": null,
"optional": false
},
"property": {
"span": {
"start": 3,
"end": 4,
"ctxt": 0
},
"value": "b",
"typeAnnotation": null,
"optional": false
}
},
"span": {
"start": 1,
"end": 5,
"ctxt": 0
},
"attributes": [],
"selfClosing": false,
"typeArguments": null
},
"children": [],
"closing": {
"type": "JSXClosingElement",
"span": {
"start": 7,
"end": 11,
"ctxt": 0
},
"name": {
"type": "JSXMemberExpression",
"object": {
"span": {
"start": 7,
"end": 8,
"ctxt": 0
},
"value": "a",
"typeAnnotation": null,
"optional": false
},
"property": {
"span": {
"start": 9,
"end": 10,
"ctxt": 0
},
"value": "b",
"typeAnnotation": null,
"optional": false
}
}
}
}
],
"shebang": null
}