2013-12-25 12:10:33 -06:00
|
|
|
// Copyright 2013-2014 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.
|
|
|
|
|
2014-01-17 12:18:02 -06:00
|
|
|
// force-host
|
|
|
|
|
2014-05-24 23:38:16 -05:00
|
|
|
#![feature(globs, plugin_registrar, macro_rules, quote, managed_boxes)]
|
2013-12-25 12:10:33 -06:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate syntax;
|
2014-05-24 23:38:16 -05:00
|
|
|
extern crate rustc;
|
2013-12-25 12:10:33 -06:00
|
|
|
|
2014-05-24 23:38:16 -05:00
|
|
|
use syntax::ast::{TokenTree, Item, MetaItem};
|
2013-12-25 12:10:33 -06:00
|
|
|
use syntax::codemap::Span;
|
|
|
|
use syntax::ext::base::*;
|
|
|
|
use syntax::parse::token;
|
2014-05-24 23:38:16 -05:00
|
|
|
use rustc::plugin::Registry;
|
2013-12-25 12:10:33 -06:00
|
|
|
|
2014-06-11 21:33:52 -05:00
|
|
|
use std::gc::{Gc, GC};
|
|
|
|
|
2013-12-25 12:10:33 -06:00
|
|
|
#[macro_export]
|
2014-04-21 16:58:52 -05:00
|
|
|
macro_rules! exported_macro (() => (2i))
|
2013-12-25 12:10:33 -06:00
|
|
|
|
2014-04-21 16:58:52 -05:00
|
|
|
macro_rules! unexported_macro (() => (3i))
|
2013-12-25 12:10:33 -06:00
|
|
|
|
2014-05-24 23:38:16 -05:00
|
|
|
#[plugin_registrar]
|
|
|
|
pub fn plugin_registrar(reg: &mut Registry) {
|
|
|
|
reg.register_macro("make_a_1", expand_make_a_1);
|
|
|
|
reg.register_syntax_extension(
|
|
|
|
token::intern("into_foo"),
|
|
|
|
ItemModifier(expand_into_foo));
|
2013-12-25 12:10:33 -06:00
|
|
|
}
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
fn expand_make_a_1(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree])
|
|
|
|
-> Box<MacResult> {
|
2013-12-25 12:10:33 -06:00
|
|
|
if !tts.is_empty() {
|
|
|
|
cx.span_fatal(sp, "make_a_1 takes no arguments");
|
|
|
|
}
|
2014-04-15 07:00:14 -05:00
|
|
|
MacExpr::new(quote_expr!(cx, 1i))
|
2013-12-25 12:10:33 -06:00
|
|
|
}
|
|
|
|
|
2014-06-11 21:33:52 -05:00
|
|
|
fn expand_into_foo(cx: &mut ExtCtxt, sp: Span, attr: Gc<MetaItem>, it: Gc<Item>)
|
|
|
|
-> Gc<Item> {
|
|
|
|
box(GC) Item {
|
2014-02-28 01:49:25 -06:00
|
|
|
attrs: it.attrs.clone(),
|
|
|
|
..(*quote_item!(cx, enum Foo { Bar, Baz }).unwrap()).clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-25 12:10:33 -06:00
|
|
|
pub fn foo() {}
|