]> git.lizzy.rs Git - rust.git/blob - src/libsyntax_ext/lib.rs
(hopefully) fix pprust error
[rust.git] / src / libsyntax_ext / lib.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Syntax extensions in the Rust compiler.
12
13 #![crate_name = "syntax_ext"]
14 #![unstable(feature = "rustc_private", issue = "27812")]
15 #![crate_type = "dylib"]
16 #![crate_type = "rlib"]
17 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19        html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(proc_macro_internals)]
23 #![feature(rustc_private)]
24 #![feature(staged_api)]
25
26 extern crate fmt_macros;
27 extern crate log;
28 #[macro_use]
29 extern crate syntax;
30 extern crate syntax_pos;
31 extern crate proc_macro;
32 extern crate rustc_errors as errors;
33
34 mod asm;
35 mod cfg;
36 mod concat;
37 mod concat_idents;
38 mod env;
39 mod format;
40 mod format_foreign;
41 mod global_asm;
42 mod log_syntax;
43 mod trace_macros;
44
45 pub mod proc_macro_registrar;
46
47 // for custom_derive
48 pub mod deriving;
49
50 pub mod proc_macro_impl;
51
52 use std::rc::Rc;
53 use syntax::ast;
54 use syntax::ext::base::{MacroExpanderFn, NormalTT, NamedSyntaxExtension};
55 use syntax::symbol::Symbol;
56
57 pub fn register_builtins(resolver: &mut syntax::ext::base::Resolver,
58                          user_exts: Vec<NamedSyntaxExtension>,
59                          enable_quotes: bool) {
60     deriving::register_builtin_derives(resolver);
61
62     let mut register = |name, ext| {
63         resolver.add_builtin(ast::Ident::with_empty_ctxt(name), Rc::new(ext));
64     };
65
66     macro_rules! register {
67         ($( $name:ident: $f:expr, )*) => { $(
68             register(Symbol::intern(stringify!($name)),
69                      NormalTT(Box::new($f as MacroExpanderFn), None, false));
70         )* }
71     }
72
73     if enable_quotes {
74         use syntax::ext::quote::*;
75         register! {
76             quote_tokens: expand_quote_tokens,
77             quote_expr: expand_quote_expr,
78             quote_ty: expand_quote_ty,
79             quote_item: expand_quote_item,
80             quote_pat: expand_quote_pat,
81             quote_arm: expand_quote_arm,
82             quote_stmt: expand_quote_stmt,
83             quote_attr: expand_quote_attr,
84             quote_arg: expand_quote_arg,
85             quote_block: expand_quote_block,
86             quote_meta_item: expand_quote_meta_item,
87             quote_path: expand_quote_path,
88         }
89     }
90
91     use syntax::ext::source_util::*;
92     register! {
93         line: expand_line,
94         column: expand_column,
95         file: expand_file,
96         stringify: expand_stringify,
97         include: expand_include,
98         include_str: expand_include_str,
99         include_bytes: expand_include_bytes,
100         module_path: expand_mod,
101
102         asm: asm::expand_asm,
103         global_asm: global_asm::expand_global_asm,
104         cfg: cfg::expand_cfg,
105         concat: concat::expand_syntax_ext,
106         concat_idents: concat_idents::expand_syntax_ext,
107         env: env::expand_env,
108         option_env: env::expand_option_env,
109         log_syntax: log_syntax::expand_syntax_ext,
110         trace_macros: trace_macros::expand_trace_macros,
111     }
112
113     // format_args uses `unstable` things internally.
114     register(Symbol::intern("format_args"),
115              NormalTT(Box::new(format::expand_format_args), None, true));
116
117     for (name, ext) in user_exts {
118         register(name, ext);
119     }
120 }