mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Merge #10081
10081: Fix error message r=lnicola a=digama0 I'm not entirely sure if the message is still correct, it seems to have survived a number of refactors, but it is mangled english anyway. Co-authored-by: Mario Carneiro <di.gama@gmail.com>
This commit is contained in:
commit
cbae596941
1 changed files with 2 additions and 2 deletions
|
@ -366,12 +366,12 @@ fn macro_expand(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<Option<Ar
|
|||
|
||||
let macro_arg = match db.macro_arg(id) {
|
||||
Some(it) => it,
|
||||
None => return ExpandResult::str_err("Fail to args in to tt::TokenTree".into()),
|
||||
None => return ExpandResult::str_err("Failed to lower macro args to token tree".into()),
|
||||
};
|
||||
|
||||
let macro_rules = match db.macro_def(loc.def) {
|
||||
Some(it) => it,
|
||||
None => return ExpandResult::str_err("Fail to find macro definition".into()),
|
||||
None => return ExpandResult::str_err("Failed to find macro definition".into()),
|
||||
};
|
||||
let ExpandResult { value: tt, err } = macro_rules.expand(db, id, ¯o_arg.0);
|
||||
// Set a hard limit for the expanded tt
|
||||
|
|
Loading…
Reference in a new issue