Move ExprConstant::kind to StringConstant::unicode (#7180)

This commit is contained in:
Dhruv Manilawala 2023-09-06 13:09:25 +05:30 committed by GitHub
parent 31990b8d3f
commit 04f2842e4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
119 changed files with 130 additions and 504 deletions

View file

@ -2682,11 +2682,7 @@ impl AstNode for ast::ExprConstant {
where
V: PreorderVisitor<'a> + ?Sized,
{
let ast::ExprConstant {
value,
range: _,
kind: _,
} = self;
let ast::ExprConstant { value, range: _ } = self;
visitor.visit_constant(value);
}
}