Home
last modified time | relevance | path

Searched refs:fake_call_site (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/proc-macro-hack/tests/ui/
Dunknown-arg.stderr1 error: expected one of: `support_nested`, `internal_macro_calls`, `fake_call_site`, `only_hack_old_…
4 3 | #[proc_macro_hack(fake_call_site, support_nexted)]
Dunknown-arg.rs3 #[proc_macro_hack(fake_call_site, support_nexted)]
Dunexpected-arg.rs3 #[proc_macro_hack(fake_call_site)]
Dunexpected-arg.stderr4 3 | #[proc_macro_hack(fake_call_site)]
/external/rust/crates/proc-macro-hack/src/
Dlib.rs228 pub fn fake_call_site(args: TokenStream, input: TokenStream) -> TokenStream { in fake_call_site() function
254 fake_call_site: bool, field
306 export_call_site.extend(quote!(fake_call_site as #call_site)); in expand_export()
308 let do_derive = if !args.fake_call_site { in expand_export()
369 let export_call_site = if args.fake_call_site { in expand_export()
Dparse.rs173 fake_call_site: false, in parse_export_args()
190 args.fake_call_site = true; in parse_export_args()
/external/rust/crates/proc-macro-hack/
DREADME.md126 macro input, use `#[proc_macro_hack(fake_call_site)]` on the re-export in your