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

55 lines
1.9 KiB
Rust
Raw Normal View History

// 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.
#![feature(plugin, plugin_registrar, rustc_private)]
2017-01-17 21:27:09 -06:00
#![plugin(proc_macro_plugin)]
extern crate rustc_plugin;
extern crate syntax;
use rustc_plugin::Registry;
use syntax::ext::base::SyntaxExtension;
2017-01-17 21:27:09 -06:00
use syntax::tokenstream::TokenStream;
2016-11-17 08:04:36 -06:00
use syntax::symbol::Symbol;
#[plugin_registrar]
pub fn plugin_registrar(reg: &mut Registry) {
2016-11-17 08:04:36 -06:00
reg.register_syntax_extension(Symbol::intern("attr_tru"),
SyntaxExtension::AttrProcMacro(Box::new(attr_tru)));
2016-11-17 08:04:36 -06:00
reg.register_syntax_extension(Symbol::intern("attr_identity"),
SyntaxExtension::AttrProcMacro(Box::new(attr_identity)));
2016-11-17 08:04:36 -06:00
reg.register_syntax_extension(Symbol::intern("tru"),
SyntaxExtension::ProcMacro(Box::new(tru)));
2016-11-17 08:04:36 -06:00
reg.register_syntax_extension(Symbol::intern("ret_tru"),
SyntaxExtension::ProcMacro(Box::new(ret_tru)));
2016-11-17 08:04:36 -06:00
reg.register_syntax_extension(Symbol::intern("identity"),
SyntaxExtension::ProcMacro(Box::new(identity)));
}
fn attr_tru(_attr: TokenStream, _item: TokenStream) -> TokenStream {
2017-03-14 17:04:46 -05:00
quote!(fn f1() -> bool { true })
}
fn attr_identity(_attr: TokenStream, item: TokenStream) -> TokenStream {
2017-03-14 17:04:46 -05:00
quote!($item)
}
fn tru(_ts: TokenStream) -> TokenStream {
2017-03-14 17:04:46 -05:00
quote!(true)
}
fn ret_tru(_ts: TokenStream) -> TokenStream {
2017-03-14 17:04:46 -05:00
quote!(return true;)
}
fn identity(ts: TokenStream) -> TokenStream {
2017-03-14 17:04:46 -05:00
quote!($ts)
}