parser/tests/0040/ast.txt
2022-11-30 00:43:37 +00:00

29 lines
573 B
Plaintext

[
If {
condition: Variable {
name: "foo",
},
then: [
Return {
value: Some(
Variable {
name: "foo",
},
),
},
],
else_ifs: [],
else: Some(
[
Return {
value: Some(
Variable {
name: "foo",
},
),
},
],
),
},
]