mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
84ac80f192
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
28 lines
992 B
Rust
28 lines
992 B
Rust
// The compiler code necessary to support the compile_error! extension.
|
|
|
|
use rustc_ast::tokenstream::TokenStream;
|
|
use rustc_expand::base::{DummyResult, ExpandResult, ExtCtxt, MacroExpanderResult};
|
|
use rustc_span::Span;
|
|
|
|
use crate::util::get_single_str_from_tts;
|
|
|
|
pub(crate) fn expand_compile_error<'cx>(
|
|
cx: &'cx mut ExtCtxt<'_>,
|
|
sp: Span,
|
|
tts: TokenStream,
|
|
) -> MacroExpanderResult<'cx> {
|
|
let ExpandResult::Ready(mac) = get_single_str_from_tts(cx, sp, tts, "compile_error!") else {
|
|
return ExpandResult::Retry(());
|
|
};
|
|
let var = match mac {
|
|
Ok(var) => var,
|
|
Err(guar) => return ExpandResult::Ready(DummyResult::any(sp, guar)),
|
|
};
|
|
|
|
#[expect(rustc::diagnostic_outside_of_impl, reason = "diagnostic message is specified by user")]
|
|
#[expect(rustc::untranslatable_diagnostic, reason = "diagnostic message is specified by user")]
|
|
let guar = cx.dcx().span_err(sp, var.to_string());
|
|
|
|
ExpandResult::Ready(DummyResult::any(sp, guar))
|
|
}
|