rust/compiler/rustc_builtin_macros/src/compile_error.rs

21 lines
517 B
Rust
Raw Normal View History

2017-05-07 03:26:45 +00:00
// The compiler code necessary to support the compile_error! extension.
use rustc_ast::tokenstream::TokenStream;
use rustc_expand::base::{self, *};
use rustc_span::Span;
2017-05-07 03:26:45 +00:00
2019-12-22 22:42:04 +00:00
pub fn expand_compile_error<'cx>(
cx: &'cx mut ExtCtxt<'_>,
sp: Span,
tts: TokenStream,
) -> 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!") {
None => return DummyResult::any(sp),
2017-05-07 03:26:45 +00:00
Some(v) => v,
};
cx.span_err(sp, &var);
DummyResult::any(sp)
}