Expand compile_error!

This commit is contained in:
Jeremy Kolb 2019-11-24 19:01:51 -05:00
parent f7f9757b6b
commit 67d3600f59
2 changed files with 39 additions and 0 deletions

View File

@ -46,6 +46,7 @@ pub fn find_builtin_macro(
register_builtin! {
(COLUMN_MACRO, Column) => column_expand,
(COMPILE_ERROR_MACRO, CompileError) => compile_error_expand,
(FILE_MACRO, File) => file_expand,
(LINE_MACRO, Line) => line_expand,
(STRINGIFY_MACRO, Stringify) => stringify_expand
@ -172,6 +173,26 @@ fn file_expand(
Ok(expanded)
}
fn compile_error_expand(
_db: &dyn AstDatabase,
_id: MacroCallId,
tt: &tt::Subtree,
) -> Result<tt::Subtree, mbe::ExpandError> {
if tt.count() == 1 {
match &tt.token_trees[0] {
tt::TokenTree::Leaf(tt::Leaf::Literal(it)) => {
let s = it.text.as_str();
if s.contains(r#"""#) {
return Ok(quote! { loop { #it }});
}
}
_ => {}
};
}
Err(mbe::ExpandError::BindingError("Must be a string".into()))
}
#[cfg(test)]
mod tests {
use super::*;
@ -259,4 +280,21 @@ macro_rules! file {() => {}}
assert_eq!(expanded, "\"\"");
}
#[test]
fn test_compile_error_expand() {
let expanded = expand_builtin_macro(
r#"
#[rustc_builtin_macro]
macro_rules! compile_error {
($msg:expr) => ({ /* compiler built-in */ });
($msg:expr,) => ({ /* compiler built-in */ })
}
compile_error!("error!");
"#,
BuiltinFnLikeExpander::CompileError,
);
assert_eq!(expanded, r#"loop{"error!"}"#);
}
}

View File

@ -144,5 +144,6 @@ fn as_name(&self) -> Name {
// Builtin Macros
pub const FILE_MACRO: Name = Name::new_inline_ascii(4, b"file");
pub const COLUMN_MACRO: Name = Name::new_inline_ascii(6, b"column");
pub const COMPILE_ERROR_MACRO: Name = Name::new_inline_ascii(13, b"compile_error");
pub const LINE_MACRO: Name = Name::new_inline_ascii(4, b"line");
pub const STRINGIFY_MACRO: Name = Name::new_inline_ascii(9, b"stringify");