2017-05-07 03:26:45 +00:00
|
|
|
// The compiler code necessary to support the compile_error! extension.
|
|
|
|
|
2020-02-29 17:37:32 +00:00
|
|
|
use rustc_ast::tokenstream::TokenStream;
|
2024-02-25 21:25:26 +00:00
|
|
|
use rustc_expand::base::{get_single_str_from_tts, DummyResult, ExtCtxt, MacResult};
|
2019-12-31 17:15:40 +00:00
|
|
|
use rustc_span::Span;
|
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,
|
2024-02-25 21:25:26 +00:00
|
|
|
) -> Box<dyn MacResult + 'cx> {
|
2024-02-25 21:22:11 +00:00
|
|
|
let var = match get_single_str_from_tts(cx, sp, tts, "compile_error!") {
|
|
|
|
Ok(var) => var,
|
|
|
|
Err(guar) => return DummyResult::any(sp, guar),
|
2017-05-07 03:26:45 +00:00
|
|
|
};
|
|
|
|
|
2024-02-25 21:22:11 +00:00
|
|
|
#[expect(rustc::diagnostic_outside_of_impl, reason = "diagnostic message is specified by user")]
|
2023-04-08 19:37:41 +00:00
|
|
|
#[expect(rustc::untranslatable_diagnostic, reason = "diagnostic message is specified by user")]
|
2024-02-25 21:22:11 +00:00
|
|
|
let guar = cx.dcx().span_err(sp, var.to_string());
|
2017-05-07 03:26:45 +00:00
|
|
|
|
2024-02-25 21:22:11 +00:00
|
|
|
DummyResult::any(sp, guar)
|
2017-05-07 03:26:45 +00:00
|
|
|
}
|