2015-12-10 08:23:14 -06:00
|
|
|
//! Syntax extensions in the Rust compiler.
|
|
|
|
|
2019-02-05 07:37:15 -06:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2015-12-15 01:23:18 -06:00
|
|
|
|
2019-02-04 06:49:54 -06:00
|
|
|
#![deny(rust_2018_idioms)]
|
|
|
|
|
2018-03-20 09:41:14 -05:00
|
|
|
#![feature(in_band_lifetimes)]
|
|
|
|
#![feature(proc_macro_diagnostic)]
|
2016-10-03 11:49:39 -05:00
|
|
|
#![feature(proc_macro_internals)]
|
2018-03-20 09:41:14 -05:00
|
|
|
#![feature(proc_macro_span)]
|
2017-12-06 12:50:55 -06:00
|
|
|
#![feature(decl_macro)]
|
2019-02-10 01:13:30 -06:00
|
|
|
#![feature(nll)]
|
2018-05-10 13:02:19 -05:00
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2018-02-12 16:21:20 -06:00
|
|
|
|
2018-12-13 09:57:25 -06:00
|
|
|
#![recursion_limit="256"]
|
|
|
|
|
2016-10-03 11:49:39 -05:00
|
|
|
extern crate proc_macro;
|
2019-02-04 06:49:54 -06:00
|
|
|
|
2018-02-12 16:21:20 -06:00
|
|
|
mod diagnostics;
|
|
|
|
|
2015-12-10 08:23:14 -06:00
|
|
|
mod asm;
|
2018-05-17 14:17:53 -05:00
|
|
|
mod assert;
|
2015-12-10 08:23:14 -06:00
|
|
|
mod cfg;
|
2017-05-06 22:26:45 -05:00
|
|
|
mod compile_error;
|
2015-12-10 08:23:14 -06:00
|
|
|
mod concat;
|
|
|
|
mod concat_idents;
|
|
|
|
mod env;
|
|
|
|
mod format;
|
2016-11-10 22:23:15 -06:00
|
|
|
mod format_foreign;
|
2017-03-15 21:27:40 -05:00
|
|
|
mod global_asm;
|
2015-12-10 08:23:14 -06:00
|
|
|
mod log_syntax;
|
2018-09-16 04:20:47 -05:00
|
|
|
mod proc_macro_server;
|
2018-07-20 20:04:02 -05:00
|
|
|
mod test;
|
2018-09-02 11:03:24 -05:00
|
|
|
mod test_case;
|
2018-09-16 04:20:47 -05:00
|
|
|
mod trace_macros;
|
2015-12-10 08:23:14 -06:00
|
|
|
|
2018-09-16 04:20:47 -05:00
|
|
|
pub mod deriving;
|
2018-03-15 18:09:22 -05:00
|
|
|
pub mod proc_macro_decls;
|
2017-01-09 03:31:14 -06:00
|
|
|
pub mod proc_macro_impl;
|
|
|
|
|
2018-02-27 10:11:14 -06:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::ast;
|
2018-07-20 20:04:02 -05:00
|
|
|
use syntax::ext::base::{MacroExpanderFn, NormalTT, NamedSyntaxExtension, MultiModifier};
|
2018-05-12 19:51:46 -05:00
|
|
|
use syntax::ext::hygiene;
|
2016-11-16 02:21:52 -06:00
|
|
|
use syntax::symbol::Symbol;
|
2016-09-07 18:21:59 -05:00
|
|
|
|
2018-07-12 04:58:16 -05:00
|
|
|
pub fn register_builtins(resolver: &mut dyn syntax::ext::base::Resolver,
|
2018-06-01 17:40:33 -05:00
|
|
|
user_exts: Vec<NamedSyntaxExtension>) {
|
2017-01-23 09:01:49 -06:00
|
|
|
deriving::register_builtin_derives(resolver);
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
let mut register = |name, ext| {
|
2018-02-27 10:11:14 -06:00
|
|
|
resolver.add_builtin(ast::Ident::with_empty_ctxt(name), Lrc::new(ext));
|
2016-09-07 18:21:59 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
macro_rules! register {
|
|
|
|
($( $name:ident: $f:expr, )*) => { $(
|
2016-11-16 02:21:52 -06:00
|
|
|
register(Symbol::intern(stringify!($name)),
|
2017-08-08 10:21:20 -05:00
|
|
|
NormalTT {
|
|
|
|
expander: Box::new($f as MacroExpanderFn),
|
|
|
|
def_info: None,
|
2019-02-07 07:19:06 -06:00
|
|
|
allow_internal_unstable: None,
|
2017-08-08 10:21:20 -05:00
|
|
|
allow_internal_unsafe: false,
|
2018-06-11 06:21:36 -05:00
|
|
|
local_inner_macros: false,
|
2018-02-24 21:11:06 -06:00
|
|
|
unstable_feature: None,
|
2018-05-12 19:51:46 -05:00
|
|
|
edition: hygiene::default_edition(),
|
2017-08-08 10:21:20 -05:00
|
|
|
});
|
2016-09-07 18:21:59 -05:00
|
|
|
)* }
|
2015-12-10 08:23:14 -06:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::ext::source_util::*;
|
|
|
|
register! {
|
|
|
|
line: expand_line,
|
2017-08-09 18:42:36 -05:00
|
|
|
__rust_unstable_column: expand_column_gated,
|
2016-09-07 18:21:59 -05:00
|
|
|
column: expand_column,
|
|
|
|
file: expand_file,
|
|
|
|
stringify: expand_stringify,
|
|
|
|
include: expand_include,
|
|
|
|
include_str: expand_include_str,
|
|
|
|
include_bytes: expand_include_bytes,
|
|
|
|
module_path: expand_mod,
|
|
|
|
|
|
|
|
asm: asm::expand_asm,
|
2017-03-15 21:27:40 -05:00
|
|
|
global_asm: global_asm::expand_global_asm,
|
2016-09-07 18:21:59 -05:00
|
|
|
cfg: cfg::expand_cfg,
|
|
|
|
concat: concat::expand_syntax_ext,
|
|
|
|
concat_idents: concat_idents::expand_syntax_ext,
|
|
|
|
env: env::expand_env,
|
|
|
|
option_env: env::expand_option_env,
|
|
|
|
log_syntax: log_syntax::expand_syntax_ext,
|
|
|
|
trace_macros: trace_macros::expand_trace_macros,
|
2017-05-06 22:26:45 -05:00
|
|
|
compile_error: compile_error::expand_compile_error,
|
2018-03-07 01:13:15 -06:00
|
|
|
assert: assert::expand_assert,
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
2018-09-02 11:03:24 -05:00
|
|
|
register(Symbol::intern("test_case"), MultiModifier(Box::new(test_case::expand)));
|
2018-09-05 14:43:11 -05:00
|
|
|
register(Symbol::intern("test"), MultiModifier(Box::new(test::expand_test)));
|
|
|
|
register(Symbol::intern("bench"), MultiModifier(Box::new(test::expand_bench)));
|
2018-07-20 20:04:02 -05:00
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
// format_args uses `unstable` things internally.
|
2016-11-16 02:21:52 -06:00
|
|
|
register(Symbol::intern("format_args"),
|
2017-08-08 10:21:20 -05:00
|
|
|
NormalTT {
|
|
|
|
expander: Box::new(format::expand_format_args),
|
|
|
|
def_info: None,
|
2019-02-07 07:19:06 -06:00
|
|
|
allow_internal_unstable: Some(vec![
|
2019-02-03 05:55:00 -06:00
|
|
|
Symbol::intern("fmt_internals"),
|
2019-02-07 07:19:06 -06:00
|
|
|
].into()),
|
2017-08-08 10:21:20 -05:00
|
|
|
allow_internal_unsafe: false,
|
2018-06-11 06:21:36 -05:00
|
|
|
local_inner_macros: false,
|
2018-05-12 19:51:46 -05:00
|
|
|
unstable_feature: None,
|
|
|
|
edition: hygiene::default_edition(),
|
2017-08-08 10:21:20 -05:00
|
|
|
});
|
2018-07-19 20:53:26 -05:00
|
|
|
register(Symbol::intern("format_args_nl"),
|
|
|
|
NormalTT {
|
|
|
|
expander: Box::new(format::expand_format_args_nl),
|
|
|
|
def_info: None,
|
2019-02-07 07:19:06 -06:00
|
|
|
allow_internal_unstable: Some(vec![
|
2019-02-03 05:55:00 -06:00
|
|
|
Symbol::intern("fmt_internals"),
|
2019-02-07 07:19:06 -06:00
|
|
|
].into()),
|
2018-07-19 20:53:26 -05:00
|
|
|
allow_internal_unsafe: false,
|
|
|
|
local_inner_macros: false,
|
|
|
|
unstable_feature: None,
|
|
|
|
edition: hygiene::default_edition(),
|
|
|
|
});
|
2016-09-07 18:21:59 -05:00
|
|
|
|
2016-09-28 17:48:55 -05:00
|
|
|
for (name, ext) in user_exts {
|
|
|
|
register(name, ext);
|
|
|
|
}
|
2015-12-10 08:23:14 -06:00
|
|
|
}
|