Adjust incorrect runnable tests

This commit is contained in:
Lukas Wirth 2021-12-07 15:42:54 +01:00
parent e09d410dcd
commit f781e599cc
2 changed files with 3 additions and 5 deletions

View File

@ -298,7 +298,6 @@ impl TryToNav for hir::Impl {
let InFile { file_id, value } = self.source(db)?;
let derive_attr = self.is_builtin_derive(db);
let range = |syntax: &_| InFile::new(file_id, syntax).original_file_range(db);
let focus_range = if derive_attr.is_some() {
None
} else {
@ -307,9 +306,10 @@ impl TryToNav for hir::Impl {
.and_then(|ty| InFile::new(file_id, ty.syntax()).original_file_range_opt(db))
.map(|it| it.range)
};
let FileRange { file_id, range: full_range } = match &derive_attr {
Some(InFile { value, .. }) => range(value.syntax()),
None => range(value.syntax()),
Some(attr) => attr.syntax().original_file_range(db),
None => InFile::new(file_id, value.syntax()).original_file_range(db),
};
Some(NavigationTarget::from_syntax(

View File

@ -1437,7 +1437,6 @@ gen2!();
0,
),
full_range: 228..236,
focus_range: 228..236,
name: "tests2",
kind: Module,
description: "mod tests2",
@ -1522,7 +1521,6 @@ foo!();
0,
),
full_range: 210..217,
focus_range: 210..217,
name: "foo_tests",
kind: Module,
description: "mod foo_tests",