Lines Matching refs:to_tokens
287 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
296 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
298 Stmt::Local(local) => local.to_tokens(tokens), in to_tokens()
299 Stmt::Item(item) => item.to_tokens(tokens), in to_tokens()
300 Stmt::Expr(expr) => expr.to_tokens(tokens), in to_tokens()
302 expr.to_tokens(tokens); in to_tokens()
303 semi.to_tokens(tokens); in to_tokens()
311 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
313 self.let_token.to_tokens(tokens); in to_tokens()
314 self.pat.to_tokens(tokens); in to_tokens()
316 eq_token.to_tokens(tokens); in to_tokens()
317 init.to_tokens(tokens); in to_tokens()
319 self.semi_token.to_tokens(tokens); in to_tokens()