parser/tests/fixtures/0266/ast.txt
Saif Eddin Gmati 6a6d4d0e5f
chore: refactor ident and dynamic var parsers (#192)
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-10 15:24:55 +01:00

38 lines
935 B
Plaintext

[
If {
condition: Variable(
SimpleVariable(
SimpleVariable {
span: (
3,
5,
),
name: "foo",
},
),
),
then: [],
else_ifs: [],
else: Some(
[
If {
condition: Variable(
SimpleVariable(
SimpleVariable {
span: (
5,
12,
),
name: "bar",
},
),
),
then: [],
else_ifs: [],
else: None,
},
],
),
},
]