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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
source: crates/ruff_python_parser/tests/fixtures.rs
input_file: crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_4.py
---
## AST
```
Module(
ModModule {
node_index: NodeIndex(None),
range: 0..187,
body: [
Match(
StmtMatch {
node_index: NodeIndex(None),
range: 0..186,
subject: Name(
ExprName {
node_index: NodeIndex(None),
range: 6..13,
id: Name("subject"),
ctx: Load,
},
),
cases: [
MatchCase {
range: 156..186,
node_index: NodeIndex(None),
pattern: MatchMapping(
PatternMatchMapping {
node_index: NodeIndex(None),
range: 161..172,
keys: [
Name(
ExprName {
node_index: NodeIndex(None),
range: 162..163,
id: Name("x"),
ctx: Store,
},
),
Name(
ExprName {
node_index: NodeIndex(None),
range: 167..168,
id: Name("y"),
ctx: Store,
},
),
],
patterns: [
MatchAs(
PatternMatchAs {
node_index: NodeIndex(None),
range: 164..166,
pattern: None,
name: Some(
Identifier {
id: Name("as"),
range: 164..166,
node_index: NodeIndex(None),
},
),
},
),
MatchValue(
PatternMatchValue {
node_index: NodeIndex(None),
range: 170..171,
value: NumberLiteral(
ExprNumberLiteral {
node_index: NodeIndex(None),
range: 170..171,
value: Int(
1,
),
},
),
},
),
],
rest: None,
},
),
guard: None,
body: [
Pass(
StmtPass {
node_index: NodeIndex(None),
range: 182..186,
},
),
],
},
],
},
),
],
},
)
```
## Errors
|
2 | # This `as` pattern is unparenthesized so the parser never takes the path
3 | # where it might be confused as a mapping key pattern.
4 | case {x as y: 1}:
| ^ Syntax Error: Invalid mapping pattern key
5 | pass
|
|
2 | # This `as` pattern is unparenthesized so the parser never takes the path
3 | # where it might be confused as a mapping key pattern.
4 | case {x as y: 1}:
| ^^ Syntax Error: Expected `:`, found `as`
5 | pass
|
|
2 | # This `as` pattern is unparenthesized so the parser never takes the path
3 | # where it might be confused as a mapping key pattern.
4 | case {x as y: 1}:
| ^ Syntax Error: Expected `,`, found name
5 | pass
|