mirror of https://github.com/astral-sh/ruff
50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
---
|
|
source: parser/src/context.rs
|
|
expression: parse_ast
|
|
---
|
|
[
|
|
Attributed {
|
|
range: 0..8,
|
|
custom: (),
|
|
node: Delete(
|
|
StmtDelete {
|
|
targets: [
|
|
Attributed {
|
|
range: 4..8,
|
|
custom: (),
|
|
node: Subscript(
|
|
ExprSubscript {
|
|
value: Attributed {
|
|
range: 4..5,
|
|
custom: (),
|
|
node: Name(
|
|
ExprName {
|
|
id: Identifier(
|
|
"x",
|
|
),
|
|
ctx: Load,
|
|
},
|
|
),
|
|
},
|
|
slice: Attributed {
|
|
range: 6..7,
|
|
custom: (),
|
|
node: Name(
|
|
ExprName {
|
|
id: Identifier(
|
|
"y",
|
|
),
|
|
ctx: Load,
|
|
},
|
|
),
|
|
},
|
|
ctx: Del,
|
|
},
|
|
),
|
|
},
|
|
],
|
|
},
|
|
),
|
|
},
|
|
]
|