Lines Matching defs:tokens
27 let tokens = quote! { in test_quote_impl() localVariable
49 let tokens = quote_spanned! {span=> in test_quote_spanned_impl() localVariable
71 let tokens = quote!(#x <#x> (#x) [#x] {#x}); in test_substitution() localVariable
124 let tokens = quote! { in test_advanced() localVariable
180 let tokens = quote! { in test_integer() localVariable
196 let tokens = quote! { in test_floating() localVariable
213 let tokens = quote! { in test_char() localVariable
223 let tokens = quote!(#s); in test_str() localVariable
231 let tokens = quote!(#s); in test_string() localVariable
244 let tokens = m!(1); in test_interpolated_literal() localVariable
248 let tokens = m!(-1); in test_interpolated_literal() localVariable
252 let tokens = m!(true); in test_interpolated_literal() localVariable
256 let tokens = m!(-true); in test_interpolated_literal() localVariable
265 let tokens = quote!(struct #foo; enum #bar {}); in test_ident() localVariable
272 let tokens = quote!(let _;); in test_underscore() localVariable
281 let tokens = quote!(#ch #ch); in test_duplicate() localVariable
292 let tokens = quote! { in test_fancy_repetition() localVariable
304 let tokens = quote! { in test_nested_fancy_repetition() localVariable
318 let tokens = quote! { in test_duplicate_name_repetition() localVariable
331 let tokens = quote! { in test_duplicate_name_repetition_no_copy() localVariable
345 let tokens = quote! { in test_btreeset_repetition() localVariable
358 let tokens = quote! { #(#_i),* }; in test_variable_name_conflict() localVariable
368 let tokens = quote! { in test_nonrep_in_repetition() localVariable
378 let tokens = quote!(); in test_empty_quote() localVariable
385 let tokens = quote! { #b }; in test_box_str() localVariable
396 let tokens = quote! { #owned #borrowed }; in test_cow() localVariable
410 let tokens = quote! { #(#fields)* }; in test_closure() localVariable
452 let tokens = quote! { in test_outer_line_comment() localVariable
461 let tokens = quote! { in test_inner_line_comment() localVariable
470 let tokens = quote! { in test_outer_block_comment() localVariable
479 let tokens = quote! { in test_inner_block_comment() localVariable
488 let tokens = quote! { in test_outer_attr() localVariable
497 let tokens = quote! { in test_inner_attr() localVariable
508 let tokens = quote! { in test_star_after_repetition() localVariable