2017-01-16 00:54:36 +00:00
|
|
|
// Copyright 2017 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)]
|
|
|
|
#![feature(plugin_registrar)]
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
#![plugin(proc_macro_plugin)]
|
|
|
|
|
|
|
|
extern crate rustc_plugin;
|
|
|
|
extern crate syntax;
|
|
|
|
|
|
|
|
use rustc_plugin::Registry;
|
2017-01-18 03:27:09 +00:00
|
|
|
use syntax::ext::base::SyntaxExtension;
|
|
|
|
use syntax::symbol::Symbol;
|
|
|
|
use syntax::tokenstream::TokenStream;
|
2017-01-16 00:54:36 +00:00
|
|
|
|
|
|
|
#[plugin_registrar]
|
|
|
|
pub fn plugin_registrar(reg: &mut Registry) {
|
2017-01-18 03:27:09 +00:00
|
|
|
reg.register_syntax_extension(Symbol::intern("hello"),
|
|
|
|
SyntaxExtension::ProcMacro(Box::new(hello)));
|
2017-01-16 00:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This macro is not very interesting, but it does contain delimited tokens with
|
|
|
|
// no content - `()` and `{}` - which has caused problems in the past.
|
2017-03-14 22:04:46 +00:00
|
|
|
// Also, it tests that we can escape `$` via `$$`.
|
2017-01-18 03:27:09 +00:00
|
|
|
fn hello(_: TokenStream) -> TokenStream {
|
2017-03-14 22:04:46 +00:00
|
|
|
quote!({
|
|
|
|
fn hello() {}
|
|
|
|
macro_rules! m { ($$($$t:tt)*) => { $$($$t)* } }
|
|
|
|
m!(hello());
|
|
|
|
})
|
2017-01-16 00:54:36 +00:00
|
|
|
}
|