2016-08-28 23:16:43 -05: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 18:41:09 -05:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
#![feature(proc_macro, proc_macro_lib)]
|
|
|
|
|
|
|
|
extern crate proc_macro;
|
|
|
|
|
|
|
|
use proc_macro::{TokenStream, quote};
|
2016-08-28 23:16:43 -05:00
|
|
|
|
2017-03-17 18:41:09 -05: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-28 23:16:43 -05:00
|
|
|
}
|
|
|
|
|
2017-03-17 18:41:09 -05:00
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn attr_identity(_attr: TokenStream, item: TokenStream) -> TokenStream {
|
2017-03-14 17:04:46 -05:00
|
|
|
quote!($item)
|
2016-08-28 23:16:43 -05:00
|
|
|
}
|
|
|
|
|
2017-03-17 18:41:09 -05:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn tru(_ts: TokenStream) -> TokenStream {
|
2017-03-14 17:04:46 -05:00
|
|
|
quote!(true)
|
2016-08-28 23:16:43 -05:00
|
|
|
}
|
|
|
|
|
2017-03-17 18:41:09 -05:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn ret_tru(_ts: TokenStream) -> TokenStream {
|
2017-03-14 17:04:46 -05:00
|
|
|
quote!(return true;)
|
2016-08-28 23:16:43 -05:00
|
|
|
}
|
|
|
|
|
2017-03-17 18:41:09 -05:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn identity(ts: TokenStream) -> TokenStream {
|
2017-03-14 17:04:46 -05:00
|
|
|
quote!($ts)
|
2016-08-28 23:16:43 -05:00
|
|
|
}
|