Lines Matching refs:tokens
69 // matcher that matched no tokens.
102 // Ensure there are no additional tokens within `content`.
150 fn to_tokens(&self, tokens: &mut TokenStream) {
152 Visibility::Public(pub_token) => pub_token.to_tokens(tokens),
153 Visibility::Restricted(vis_restricted) => vis_restricted.to_tokens(tokens),
161 fn to_tokens(&self, tokens: &mut TokenStream) {
162 self.pub_token.to_tokens(tokens);
163 self.paren_token.surround(tokens, |tokens| {
166 self.in_token.to_tokens(tokens);
167 self.path.to_tokens(tokens);