• Home
  • Raw
  • Download

Lines Matching defs:tokens

24     let tokens = quote! {  in test_quote_impl()  localVariable
46 let tokens = quote_spanned! {span=> in test_quote_spanned_impl() localVariable
68 let tokens = quote!(#x <#x> (#x) [#x] {#x}); in test_substitution() localVariable
121 let tokens = quote! { in test_advanced() localVariable
177 let tokens = quote! { in test_integer() localVariable
193 let tokens = quote! { in test_floating() localVariable
210 let tokens = quote! { in test_char() localVariable
220 let tokens = quote!(#s); in test_str() localVariable
228 let tokens = quote!(#s); in test_string() localVariable
241 let tokens = m!(1); in test_interpolated_literal() localVariable
245 let tokens = m!(-1); in test_interpolated_literal() localVariable
249 let tokens = m!(true); in test_interpolated_literal() localVariable
253 let tokens = m!(-true); in test_interpolated_literal() localVariable
262 let tokens = quote!(struct #foo; enum #bar {}); in test_ident() localVariable
269 let tokens = quote!(let _;); in test_underscore() localVariable
278 let tokens = quote!(#ch #ch); in test_duplicate() localVariable
289 let tokens = quote! { in test_fancy_repetition() localVariable
301 let tokens = quote! { in test_nested_fancy_repetition() localVariable
315 let tokens = quote! { in test_duplicate_name_repetition() localVariable
328 let tokens = quote! { in test_duplicate_name_repetition_no_copy() localVariable
342 let tokens = quote! { in test_btreeset_repetition() localVariable
355 let tokens = quote! { #(#_i),* }; in test_variable_name_conflict() localVariable
365 let tokens = quote! { in test_nonrep_in_repetition() localVariable
375 let tokens = quote!(); in test_empty_quote() localVariable
382 let tokens = quote! { #b }; in test_box_str() localVariable
393 let tokens = quote! { #owned #borrowed }; in test_cow() localVariable
407 let tokens = quote! { #(#fields)* }; in test_closure() localVariable
449 let tokens = quote! { in test_outer_line_comment() localVariable
458 let tokens = quote! { in test_inner_line_comment() localVariable
467 let tokens = quote! { in test_outer_block_comment() localVariable
476 let tokens = quote! { in test_inner_block_comment() localVariable
485 let tokens = quote! { in test_outer_attr() localVariable
494 let tokens = quote! { in test_inner_attr() localVariable
505 let tokens = quote! { in test_star_after_repetition() localVariable