2017-05-07 03:26:45 +00:00
|
|
|
// The compiler code necessary to support the compile_error! extension.
|
|
|
|
|
2019-10-16 08:59:30 +00:00
|
|
|
use syntax_expand::base::{self, *};
|
2017-05-07 03:26:45 +00:00
|
|
|
use syntax_pos::Span;
|
2019-08-31 17:08:06 +00:00
|
|
|
use syntax::tokenstream::TokenStream;
|
2017-05-07 03:26:45 +00:00
|
|
|
|
2019-02-04 12:49:54 +00:00
|
|
|
pub fn expand_compile_error<'cx>(cx: &'cx mut ExtCtxt<'_>,
|
2017-05-07 03:26:45 +00:00
|
|
|
sp: Span,
|
2019-08-31 17:08:06 +00:00
|
|
|
tts: TokenStream)
|
2018-07-12 09:58:16 +00:00
|
|
|
-> Box<dyn base::MacResult + 'cx> {
|
2017-05-07 03:26:45 +00:00
|
|
|
let var = match get_single_str_from_tts(cx, sp, tts, "compile_error!") {
|
2018-12-29 21:56:55 +00:00
|
|
|
None => return DummyResult::any(sp),
|
2017-05-07 03:26:45 +00:00
|
|
|
Some(v) => v,
|
|
|
|
};
|
|
|
|
|
|
|
|
cx.span_err(sp, &var);
|
|
|
|
|
|
|
|
DummyResult::any(sp)
|
|
|
|
}
|