/src/test/run-pass-fulldeps/auxiliary/proc_macro_def.rs

https://gitlab.com/jianglu/rust · Rust · 44 lines · 25 code · 9 blank · 10 comment · 0 complexity · dca1a6a14871356888467916100e545b MD5 · raw file

  1. // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. // no-prefer-dynamic
  11. #![crate_type = "proc-macro"]
  12. #![feature(proc_macro, proc_macro_non_items)]
  13. extern crate proc_macro;
  14. use proc_macro::*;
  15. #[proc_macro_attribute]
  16. pub fn attr_tru(_attr: TokenStream, item: TokenStream) -> TokenStream {
  17. let name = item.into_iter().skip(1).next().unwrap();
  18. quote!(fn $name() -> bool { true })
  19. }
  20. #[proc_macro_attribute]
  21. pub fn attr_identity(_attr: TokenStream, item: TokenStream) -> TokenStream {
  22. quote!($item)
  23. }
  24. #[proc_macro]
  25. pub fn tru(_ts: TokenStream) -> TokenStream {
  26. quote!(true)
  27. }
  28. #[proc_macro]
  29. pub fn ret_tru(_ts: TokenStream) -> TokenStream {
  30. quote!(return true;)
  31. }
  32. #[proc_macro]
  33. pub fn identity(ts: TokenStream) -> TokenStream {
  34. quote!($ts)
  35. }