mono/packages/xblox/tests/fixtures/if-else-zero.json
2026-04-07 19:41:32 +02:00

19 lines
421 B
JSON

{
"version": 1,
"context": { "n": 0 },
"roots": [
{
"kind": "if",
"condition": "this.n > 0",
"consequent": [{ "kind": "runScript", "method": "return 'pos';" }],
"elseIfBlocks": [
{
"condition": "this.n < 0",
"consequent": [{ "kind": "runScript", "method": "return 'neg';" }]
}
],
"alternate": [{ "kind": "runScript", "method": "return 'zero';" }]
}
]
}