1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
source: parser/src/context.rs
expression: parse_ast
---
[
With(
StmtWith {
range: 0..17,
items: [
WithItem {
range: 5..11,
context_expr: Constant(
ExprConstant {
range: 5..6,
value: Int(
1,
),
kind: None,
},
),
optional_vars: Some(
Name(
ExprName {
range: 10..11,
id: Identifier(
"x",
),
ctx: Store,
},
),
),
},
],
body: [
Pass(
StmtPass {
range: 13..17,
},
),
],
type_comment: None,
},
),
]