Lines Matching refs:to_tokens
314 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
323 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
325 Stmt::Local(local) => local.to_tokens(tokens), in to_tokens()
326 Stmt::Item(item) => item.to_tokens(tokens), in to_tokens()
327 Stmt::Expr(expr) => expr.to_tokens(tokens), in to_tokens()
329 expr.to_tokens(tokens); in to_tokens()
330 semi.to_tokens(tokens); in to_tokens()
338 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
340 self.let_token.to_tokens(tokens); in to_tokens()
341 self.pat.to_tokens(tokens); in to_tokens()
343 eq_token.to_tokens(tokens); in to_tokens()
344 init.to_tokens(tokens); in to_tokens()
346 self.semi_token.to_tokens(tokens); in to_tokens()