* docs: add DecimalLiteral to AST spec * add decimal support * fix: throw invalid decimal on start * add DecimalLiteral type definitions * update parser typings * add generator support * add syntax-decimal plugin * Add syntax-decimal to babel-standalone * add syntax-decimal to missing plugin helpers * fix incorrect test macro
26 lines
769 B
JSON
26 lines
769 B
JSON
{
|
|
"type": "File",
|
|
"start":0,"end":6,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":6}},
|
|
"program": {
|
|
"type": "Program",
|
|
"start":0,"end":6,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":6}},
|
|
"sourceType": "script",
|
|
"interpreter": null,
|
|
"body": [
|
|
{
|
|
"type": "ExpressionStatement",
|
|
"start":0,"end":6,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":6}},
|
|
"expression": {
|
|
"type": "DecimalLiteral",
|
|
"start":0,"end":6,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":6}},
|
|
"extra": {
|
|
"rawValue": "100.0",
|
|
"raw": "100.0m"
|
|
},
|
|
"value": "100.0"
|
|
}
|
|
}
|
|
],
|
|
"directives": []
|
|
}
|
|
} |