2017-05-06 23:26:45 -04:00
|
|
|
// The compiler code necessary to support the compile_error! extension.
|
|
|
|
|
2020-02-29 20:37:32 +03:00
|
|
|
use rustc_ast::tokenstream::TokenStream;
|
2019-12-29 17:23:55 +03:00
|
|
|
use rustc_expand::base::{self, *};
|
2019-12-31 20:15:40 +03:00
|
|
|
use rustc_span::Span;
|
2017-05-06 23:26:45 -04:00
|
|
|
|
2019-02-04 21:49:54 +09:00
|
|
|
pub fn expand_compile_error<'cx>(
|
|
|
|
cx: &'cx mut ExtCtxt<'_>,
|
2017-05-06 23:26:45 -04:00
|
|
|
sp: Span,
|
2019-08-31 20:08:06 +03:00
|
|
|
tts: TokenStream,
|
2018-07-12 11:58:16 +02:00
|
|
|
) -> Box<dyn base::MacResult + 'cx> {
|
2022-02-19 00:48:49 +01:00
|
|
|
let Some(var) = get_single_str_from_tts(cx, sp, tts, "compile_error!") else {
|
|
|
|
return DummyResult::any(sp);
|
2017-05-06 23:26:45 -04:00
|
|
|
};
|
|
|
|
|
2022-04-05 15:52:53 +03:00
|
|
|
cx.span_err(sp, var.as_str());
|
2017-05-06 23:26:45 -04:00
|
|
|
|
|
|
|
DummyResult::any(sp)
|
|
|
|
}
|