• Home
  • Raw
  • Download

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
127 let tokens = quote! { in test_advanced() localVariable
183 let tokens = quote! { in test_integer() localVariable
199 let tokens = quote! { in test_floating() localVariable
216 let tokens = quote! { in test_char() localVariable
226 let tokens = quote!(#s); in test_str() localVariable
234 let tokens = quote!(#s); in test_string() localVariable
242 let tokens = quote!(#s); in test_c_str() localVariable
250 let tokens = quote!(#s); in test_c_string() localVariable
263 let tokens = m!(1); in test_interpolated_literal() localVariable
267 let tokens = m!(-1); in test_interpolated_literal() localVariable
271 let tokens = m!(true); in test_interpolated_literal() localVariable
275 let tokens = m!(-true); in test_interpolated_literal() localVariable
284 let tokens = quote!(struct #foo; enum #bar {}); in test_ident() localVariable
291 let tokens = quote!(let _;); in test_underscore() localVariable
300 let tokens = quote!(#ch #ch); in test_duplicate() localVariable
311 let tokens = quote! { in test_fancy_repetition() localVariable
323 let tokens = quote! { in test_nested_fancy_repetition() localVariable
337 let tokens = quote! { in test_duplicate_name_repetition() localVariable
350 let tokens = quote! { in test_duplicate_name_repetition_no_copy() localVariable
364 let tokens = quote! { in test_btreeset_repetition() localVariable
377 let tokens = quote! { #(#_i),* }; in test_variable_name_conflict() localVariable
387 let tokens = quote! { in test_nonrep_in_repetition() localVariable
397 let tokens = quote!(); in test_empty_quote() localVariable
404 let tokens = quote! { #b }; in test_box_str() localVariable
415 let tokens = quote! { #owned #borrowed }; in test_cow() localVariable
429 let tokens = quote! { #(#fields)* }; in test_closure() localVariable
471 let tokens = quote! { in test_outer_line_comment() localVariable
480 let tokens = quote! { in test_inner_line_comment() localVariable
489 let tokens = quote! { in test_outer_block_comment() localVariable
498 let tokens = quote! { in test_inner_block_comment() localVariable
507 let tokens = quote! { in test_outer_attr() localVariable
516 let tokens = quote! { in test_inner_attr() localVariable
527 let tokens = quote! { in test_star_after_repetition() localVariable