ruff/parser/src/snapshots/rustpython_parser__context_...

78 lines
2.5 KiB
Plaintext

---
source: parser/src/context.rs
expression: parse_ast
---
[
Assign(
StmtAssign {
range: 0..19,
targets: [
Tuple(
ExprTuple {
range: 0..7,
elts: [
Name(
ExprName {
range: 1..2,
id: "x",
ctx: Store,
},
),
Starred(
ExprStarred {
range: 4..6,
value: Name(
ExprName {
range: 5..6,
id: "y",
ctx: Store,
},
),
ctx: Store,
},
),
],
ctx: Store,
},
),
],
value: Tuple(
ExprTuple {
range: 10..19,
elts: [
Constant(
ExprConstant {
range: 11..12,
value: Int(
1,
),
kind: None,
},
),
Constant(
ExprConstant {
range: 14..15,
value: Int(
2,
),
kind: None,
},
),
Constant(
ExprConstant {
range: 17..18,
value: Int(
3,
),
kind: None,
},
),
],
ctx: Load,
},
),
type_comment: None,
},
),
]