vendor prettyplease

This commit is contained in:
nora 2023-01-22 13:48:22 +01:00
parent a7919c6da1
commit 39c186233c
29 changed files with 4987 additions and 4 deletions

View file

@ -0,0 +1,9 @@
use crate::algorithm::Printer;
use syn::Lifetime;
impl Printer {
pub fn lifetime(&mut self, lifetime: &Lifetime) {
self.word("'");
self.ident(&lifetime.ident);
}
}