mirror of
https://github.com/danog/parser.git
synced 2024-11-27 04:14:55 +01:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
[
|
|
Expression {
|
|
expr: Infix {
|
|
lhs: Variable {
|
|
name: "a",
|
|
},
|
|
op: Assign,
|
|
rhs: LiteralInteger {
|
|
i: 4,
|
|
},
|
|
},
|
|
},
|
|
Expression {
|
|
expr: Infix {
|
|
lhs: Variable {
|
|
name: "b",
|
|
},
|
|
op: Assign,
|
|
rhs: Match {
|
|
condition: Variable {
|
|
name: "a",
|
|
},
|
|
default: Some(
|
|
DefaultMatchArm {
|
|
body: Null,
|
|
},
|
|
),
|
|
arms: [
|
|
MatchArm {
|
|
conditions: [
|
|
LiteralInteger {
|
|
i: 1,
|
|
},
|
|
LiteralInteger {
|
|
i: 2,
|
|
},
|
|
LiteralInteger {
|
|
i: 3,
|
|
},
|
|
LiteralInteger {
|
|
i: 4,
|
|
},
|
|
],
|
|
body: Null,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
]
|