Lines Matching defs:tokens

19     let tokens = quote! {  in test_quote_impl()  localVariable
41 let tokens = quote_spanned! {span=> in test_quote_spanned_impl() localVariable
63 let tokens = quote!(#x <#x> (#x) [#x] {#x}); in test_substitution() localVariable
95 let tokens = quote! { in test_advanced() localVariable
151 let tokens = quote! { in test_integer() localVariable
165 let tokens = quote! { in test_floating() localVariable
182 let tokens = quote! { in test_char() localVariable
192 let tokens = quote!(#s); in test_str() localVariable
200 let tokens = quote!(#s); in test_string() localVariable
209 let tokens = quote!(struct #foo; enum #bar {}); in test_ident() localVariable
218 let tokens = quote!(#ch #ch); in test_duplicate() localVariable
229 let tokens = quote! { in test_fancy_repetition() localVariable
241 let tokens = quote! { in test_nested_fancy_repetition() localVariable
255 let tokens = quote! { in test_duplicate_name_repetition() localVariable
268 let tokens = quote! { in test_duplicate_name_repetition_no_copy() localVariable
282 let tokens = quote! { in test_btreeset_repetition() localVariable
295 let tokens = quote! { #(#_i),* }; in test_variable_name_conflict() localVariable
305 let tokens = quote! { in test_nonrep_in_repetition() localVariable
315 let tokens = quote!(); in test_empty_quote() localVariable
322 let tokens = quote! { #b }; in test_box_str() localVariable
333 let tokens = quote! { #owned #borrowed }; in test_cow() localVariable
347 let tokens = quote! { #(#fields)* }; in test_closure() localVariable
389 let tokens = quote! { in test_outer_line_comment() localVariable
398 let tokens = quote! { in test_inner_line_comment() localVariable
407 let tokens = quote! { in test_outer_block_comment() localVariable
416 let tokens = quote! { in test_inner_block_comment() localVariable
425 let tokens = quote! { in test_outer_attr() localVariable
434 let tokens = quote! { in test_inner_attr() localVariable
445 let tokens = quote! { in test_star_after_repetition() localVariable