Add parenthesized flag to ExprTuple and ExprGenerator (#9614)
This commit is contained in:
@@ -2430,6 +2430,7 @@ impl AstNode for ast::ExprGeneratorExp {
|
||||
elt,
|
||||
generators,
|
||||
range: _,
|
||||
parenthesized: _,
|
||||
} = self;
|
||||
visitor.visit_expr(elt);
|
||||
for comprehension in generators {
|
||||
@@ -3256,6 +3257,7 @@ impl AstNode for ast::ExprTuple {
|
||||
elts,
|
||||
ctx: _,
|
||||
range: _,
|
||||
parenthesized: _,
|
||||
} = self;
|
||||
|
||||
for expr in elts {
|
||||
|
||||
Reference in New Issue
Block a user