Auto merge of #105160 - nnethercote:rm-Lit-token_lit, r=petrochenkov
Remove `token::Lit` from `ast::MetaItemLit`. Currently `ast::MetaItemLit` represents the literal kind twice. This PR removes that redundancy. Best reviewed one commit at a time. r? `@petrochenkov`
This commit is contained in:
commit
17a092f467
6 changed files with 8 additions and 6 deletions
|
|
@ -299,7 +299,7 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {
|
|||
};
|
||||
kind!("Float(_, {float_ty})");
|
||||
},
|
||||
LitKind::ByteStr(ref vec) => {
|
||||
LitKind::ByteStr(ref vec, _) => {
|
||||
bind!(self, vec);
|
||||
kind!("ByteStr(ref {vec})");
|
||||
chain!(self, "let [{:?}] = **{vec}", vec.value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue