You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/parser/samples/if-block-elseif/output.json

99 lines
1.7 KiB

8 years ago
{
"html": {
"start": 0,
"end": 89,
8 years ago
"type": "Fragment",
"children": [
{
"start": 0,
"end": 89,
8 years ago
"type": "IfBlock",
"expression": {
"type": "BinaryExpression",
"start": 5,
"end": 11,
8 years ago
"left": {
"type": "Identifier",
"start": 5,
"end": 6,
8 years ago
"name": "x"
},
"operator": ">",
8 years ago
"right": {
"type": "Literal",
"start": 9,
"end": 11,
8 years ago
"value": 10,
"raw": "10"
}
},
"children": [
{
"start": 14,
"end": 41,
8 years ago
"type": "Element",
"name": "p",
"attributes": [],
"children": [
{
"start": 17,
"end": 37,
8 years ago
"type": "Text",
"data": "x is greater than 10"
}
]
}
],
"else": {
"start": 58,
"end": 84,
8 years ago
"type": "ElseBlock",
"children": [
{
"start": 58,
"end": 89,
8 years ago
"type": "IfBlock",
"elseif": true,
"expression": {
"type": "BinaryExpression",
"start": 52,
"end": 57,
8 years ago
"left": {
"type": "Identifier",
"start": 52,
"end": 53,
8 years ago
"name": "x"
},
"operator": "<",
8 years ago
"right": {
"type": "Literal",
"start": 56,
"end": 57,
8 years ago
"value": 5,
"raw": "5"
}
},
"children": [
{
"start": 60,
"end": 83,
8 years ago
"type": "Element",
"name": "p",
"attributes": [],
"children": [
{
"start": 63,
"end": 79,
8 years ago
"type": "Text",
"data": "x is less than 5"
}
]
}
]
}
]
}
}
]
}
}