Lines Matching refs:Spacing
8 use proc_macro2::{Group, Ident, Punct, Spacing, TokenTree};
311 TokenTree::Punct(Punct::new('\'', Spacing::Joint)), in push_lifetime()
320 let mut apostrophe = Punct::new('\'', Spacing::Joint); in push_lifetime_spanned()
332 tokens.append(Punct::new($char1, Spacing::Alone));
336 let mut punct = Punct::new($char1, Spacing::Alone);
344 tokens.append(Punct::new($char1, Spacing::Joint));
345 tokens.append(Punct::new($char2, Spacing::Alone));
349 let mut punct = Punct::new($char1, Spacing::Joint);
352 let mut punct = Punct::new($char2, Spacing::Alone);
360 tokens.append(Punct::new($char1, Spacing::Joint));
361 tokens.append(Punct::new($char2, Spacing::Joint));
362 tokens.append(Punct::new($char3, Spacing::Alone));
366 let mut punct = Punct::new($char1, Spacing::Joint);
369 let mut punct = Punct::new($char2, Spacing::Joint);
372 let mut punct = Punct::new($char3, Spacing::Alone);