mirror of
https://github.com/danog/parser.git
synced 2024-12-02 17:38:16 +01:00
28 lines
531 B
Plaintext
28 lines
531 B
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",
|
||
|
},
|
||
|
arms: [],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
]
|