2016-08-29 04:16:43 +00:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
#![crate_type = "proc-macro"]
|
2018-08-04 00:37:14 +00:00
|
|
|
#![feature(proc_macro_non_items)]
|
2017-03-17 23:41:09 +00:00
|
|
|
|
|
|
|
extern crate proc_macro;
|
|
|
|
|
2018-04-02 15:19:32 +00:00
|
|
|
use proc_macro::*;
|
2016-08-29 04:16:43 +00:00
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn attr_tru(_attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
let name = item.into_iter().skip(1).next().unwrap();
|
|
|
|
quote!(fn $name() -> bool { true })
|
2016-08-29 04:16:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn attr_identity(_attr: TokenStream, item: TokenStream) -> TokenStream {
|
2017-03-14 22:04:46 +00:00
|
|
|
quote!($item)
|
2016-08-29 04:16:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn tru(_ts: TokenStream) -> TokenStream {
|
2017-03-14 22:04:46 +00:00
|
|
|
quote!(true)
|
2016-08-29 04:16:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn ret_tru(_ts: TokenStream) -> TokenStream {
|
2017-03-14 22:04:46 +00:00
|
|
|
quote!(return true;)
|
2016-08-29 04:16:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn identity(ts: TokenStream) -> TokenStream {
|
2017-03-14 22:04:46 +00:00
|
|
|
quote!($ts)
|
2016-08-29 04:16:43 +00:00
|
|
|
}
|