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;
|
2024-03-12 10:55:17 +08:00
|
|
|
use rustc_expand::base::{DummyResult, ExpandResult, ExtCtxt, MacroExpanderResult};
|
2019-12-31 20:15:40 +03:00
|
|
|
use rustc_span::Span;
|
2017-05-06 23:26:45 -04:00
|
|
|
|
2024-04-26 08:44:23 +10:00
|
|
|
use crate::util::get_single_str_from_tts;
|
2024-07-29 08:13:50 +10:00
|
|
|
|
2024-04-26 07:56:48 +10:00
|
|
|
pub(crate) fn expand_compile_error<'cx>(
|
2019-02-04 21:49:54 +09:00
|
|
|
cx: &'cx mut ExtCtxt<'_>,
|
2017-05-06 23:26:45 -04:00
|
|
|
sp: Span,
|
2019-08-31 20:08:06 +03:00
|
|
|
tts: TokenStream,
|
2024-03-12 10:55:17 +08:00
|
|
|
) -> MacroExpanderResult<'cx> {
|
|
|
|
let ExpandResult::Ready(mac) = get_single_str_from_tts(cx, sp, tts, "compile_error!") else {
|
|
|
|
return ExpandResult::Retry(());
|
|
|
|
};
|
|
|
|
let var = match mac {
|
2024-02-25 22:22:11 +01:00
|
|
|
Ok(var) => var,
|
2024-03-12 10:55:17 +08:00
|
|
|
Err(guar) => return ExpandResult::Ready(DummyResult::any(sp, guar)),
|
2017-05-06 23:26:45 -04:00
|
|
|
};
|
|
|
|
|
2024-02-25 22:22:11 +01:00
|
|
|
#[expect(rustc::diagnostic_outside_of_impl, reason = "diagnostic message is specified by user")]
|
2023-04-08 20:37:41 +01:00
|
|
|
#[expect(rustc::untranslatable_diagnostic, reason = "diagnostic message is specified by user")]
|
2024-02-25 22:22:11 +01:00
|
|
|
let guar = cx.dcx().span_err(sp, var.to_string());
|
2017-05-06 23:26:45 -04:00
|
|
|
|
2024-03-12 10:55:17 +08:00
|
|
|
ExpandResult::Ready(DummyResult::any(sp, guar))
|
2017-05-06 23:26:45 -04:00
|
|
|
}
|