rust/crates/ide/src/references.rs

1131 lines
23 KiB
Rust
Raw Normal View History

2019-10-22 15:46:53 -05:00
//! This module implements a reference search.
//! First, the element at the cursor position must be either an `ast::Name`
//! or `ast::NameRef`. If it's a `ast::NameRef`, at the classification step we
//! try to resolve the direct tree parent of this element, otherwise we
//! already have a definition and just need to get its HIR together with
2021-01-08 08:46:48 -06:00
//! some information that is needed for further steps of searching.
2019-10-22 15:46:53 -05:00
//! After that, we collect files that might contain references and look
//! for text occurrences of the identifier. If there's an `ast::NameRef`
//! at the index that the match starts at and its tree parent is
//! resolved to the search element definition, we get a reference.
2020-10-03 09:34:52 -05:00
pub(crate) mod rename;
2019-10-12 10:47:17 -05:00
use hir::Semantics;
2020-08-13 09:39:16 -05:00
use ide_db::{
base_db::FileId,
2020-10-15 10:27:50 -05:00
defs::{Definition, NameClass, NameRefClass},
search::{ReferenceAccess, SearchScope},
2020-03-03 11:54:39 -06:00
RootDatabase,
};
use rustc_hash::FxHashMap;
2020-08-12 11:26:51 -05:00
use syntax::{
2020-01-10 13:56:58 -06:00
algo::find_node_at_offset,
ast::{self, NameOwner},
AstNode, SyntaxNode, TextRange, TokenAtOffset, T,
};
2019-10-12 10:47:17 -05:00
use crate::{display::TryToNav, FilePosition, NavigationTarget};
2019-10-12 10:47:17 -05:00
#[derive(Debug, Clone)]
pub struct ReferenceSearchResult {
pub declaration: Declaration,
pub references: FxHashMap<FileId, Vec<(TextRange, Option<ReferenceAccess>)>>,
}
#[derive(Debug, Clone)]
pub struct Declaration {
pub nav: NavigationTarget,
pub access: Option<ReferenceAccess>,
}
pub(crate) fn find_all_refs(
2020-07-01 07:11:34 -05:00
sema: &Semantics<RootDatabase>,
position: FilePosition,
search_scope: Option<SearchScope>,
) -> Option<ReferenceSearchResult> {
2020-08-12 09:32:36 -05:00
let _p = profile::span("find_all_refs");
let syntax = sema.parse(position.file_id).syntax().clone();
let (opt_name, ctor_filter): (_, Option<fn(&_) -> bool>) = if let Some(name) =
2020-03-22 06:53:28 -05:00
get_struct_def_name_for_struct_literal_search(&sema, &syntax, position)
{
(
Some(name),
Some(|name_ref| is_record_lit_name_ref(name_ref) || is_call_expr_name_ref(name_ref)),
)
2020-12-14 09:39:42 -06:00
} else if let Some(name) = get_enum_def_name_for_struct_literal_search(&sema, &syntax, position)
{
(Some(name), Some(is_enum_lit_name_ref))
2020-03-22 06:53:28 -05:00
} else {
(sema.find_node_at_offset_with_descend::<ast::Name>(&syntax, position.offset), None)
2020-03-22 06:53:28 -05:00
};
let def = find_def(&sema, &syntax, position, opt_name)?;
2019-02-08 05:06:26 -06:00
let mut usages = def.usages(sema).set_scope(search_scope).all();
if let Some(ctor_filter) = ctor_filter {
// filter for constructor-literals
usages.references.values_mut().for_each(|it| {
it.retain(|reference| reference.name.as_name_ref().map_or(false, ctor_filter));
});
usages.references.retain(|_, it| !it.is_empty());
}
let nav = def.try_to_nav(sema.db)?;
let decl_range = nav.focus_or_full_range();
let declaration = Declaration { nav, access: decl_access(&def, &syntax, decl_range) };
let references = usages
.into_iter()
.map(|(file_id, refs)| {
(file_id, refs.into_iter().map(|file_ref| (file_ref.range, file_ref.access)).collect())
})
.collect();
Some(ReferenceSearchResult { declaration, references })
2020-03-03 11:22:52 -06:00
}
fn find_def(
2020-03-04 05:07:44 -06:00
sema: &Semantics<RootDatabase>,
syntax: &SyntaxNode,
position: FilePosition,
opt_name: Option<ast::Name>,
) -> Option<Definition> {
if let Some(name) = opt_name {
let class = NameClass::classify(sema, &name)?;
Some(class.referenced_or_defined(sema.db))
} else if let Some(lifetime) =
2020-12-16 14:35:15 -06:00
sema.find_node_at_offset_with_descend::<ast::Lifetime>(&syntax, position.offset)
{
let def = if let Some(def) =
NameRefClass::classify_lifetime(sema, &lifetime).map(|class| class.referenced(sema.db))
2020-12-16 14:35:15 -06:00
{
def
2020-12-16 14:35:15 -06:00
} else {
NameClass::classify_lifetime(sema, &lifetime)?.referenced_or_defined(sema.db)
};
Some(def)
} else if let Some(name_ref) =
sema.find_node_at_offset_with_descend::<ast::NameRef>(&syntax, position.offset)
{
let class = NameRefClass::classify(sema, &name_ref)?;
Some(class.referenced(sema.db))
2020-12-16 14:35:15 -06:00
} else {
None
}
2020-03-04 05:07:44 -06:00
}
2020-03-03 11:36:39 -06:00
fn decl_access(def: &Definition, syntax: &SyntaxNode, range: TextRange) -> Option<ReferenceAccess> {
2020-02-19 07:56:22 -06:00
match def {
2020-04-25 07:23:34 -05:00
Definition::Local(_) | Definition::Field(_) => {}
2020-01-10 13:56:58 -06:00
_ => return None,
};
let stmt = find_node_at_offset::<ast::LetStmt>(syntax, range.start())?;
2020-02-18 07:32:19 -06:00
if stmt.initializer().is_some() {
2020-01-10 13:56:58 -06:00
let pat = stmt.pat()?;
2020-07-31 13:09:09 -05:00
if let ast::Pat::IdentPat(it) = pat {
2020-04-09 16:35:05 -05:00
if it.mut_token().is_some() {
2020-01-13 10:27:06 -06:00
return Some(ReferenceAccess::Write);
2020-01-10 13:56:58 -06:00
}
}
}
None
}
2020-03-17 05:15:30 -05:00
fn get_struct_def_name_for_struct_literal_search(
2020-03-22 06:53:28 -05:00
sema: &Semantics<RootDatabase>,
syntax: &SyntaxNode,
position: FilePosition,
) -> Option<ast::Name> {
if let TokenAtOffset::Between(ref left, ref right) = syntax.token_at_offset(position.offset) {
if right.kind() != T!['{'] && right.kind() != T!['('] {
return None;
}
2020-03-22 06:53:28 -05:00
if let Some(name) =
sema.find_node_at_offset_with_descend::<ast::Name>(&syntax, left.text_range().start())
{
2020-07-30 10:50:40 -05:00
return name.syntax().ancestors().find_map(ast::Struct::cast).and_then(|l| l.name());
}
2020-03-22 06:53:28 -05:00
if sema
.find_node_at_offset_with_descend::<ast::GenericParamList>(
2020-03-22 06:53:28 -05:00
&syntax,
left.text_range().start(),
)
.is_some()
{
2020-07-30 10:50:40 -05:00
return left.ancestors().find_map(ast::Struct::cast).and_then(|l| l.name());
}
}
None
}
2020-12-14 09:39:42 -06:00
fn get_enum_def_name_for_struct_literal_search(
sema: &Semantics<RootDatabase>,
syntax: &SyntaxNode,
position: FilePosition,
) -> Option<ast::Name> {
if let TokenAtOffset::Between(ref left, ref right) = syntax.token_at_offset(position.offset) {
if right.kind() != T!['{'] && right.kind() != T!['('] {
2020-12-14 09:39:42 -06:00
return None;
}
if let Some(name) =
sema.find_node_at_offset_with_descend::<ast::Name>(&syntax, left.text_range().start())
{
return name.syntax().ancestors().find_map(ast::Enum::cast).and_then(|l| l.name());
}
if sema
.find_node_at_offset_with_descend::<ast::GenericParamList>(
&syntax,
left.text_range().start(),
)
.is_some()
{
return left.ancestors().find_map(ast::Enum::cast).and_then(|l| l.name());
}
}
None
}
fn is_call_expr_name_ref(name_ref: &ast::NameRef) -> bool {
name_ref
.syntax()
.ancestors()
.find_map(ast::CallExpr::cast)
.and_then(|c| match c.expr()? {
ast::Expr::PathExpr(p) => {
Some(p.path()?.segment()?.name_ref().as_ref() == Some(name_ref))
}
_ => None,
})
.unwrap_or(false)
}
fn is_record_lit_name_ref(name_ref: &ast::NameRef) -> bool {
name_ref
.syntax()
.ancestors()
.find_map(ast::RecordExpr::cast)
.and_then(|l| l.path())
.and_then(|p| p.segment())
.map(|p| p.name_ref().as_ref() == Some(name_ref))
.unwrap_or(false)
}
fn is_enum_lit_name_ref(name_ref: &ast::NameRef) -> bool {
name_ref
.syntax()
.ancestors()
.find_map(ast::PathExpr::cast)
.and_then(|p| p.path())
.and_then(|p| p.qualifier())
.and_then(|p| p.segment())
.map(|p| p.name_ref().as_ref() == Some(name_ref))
.unwrap_or(false)
}
2019-01-18 02:29:09 -06:00
#[cfg(test)]
mod tests {
2020-10-02 09:42:48 -05:00
use expect_test::{expect, Expect};
use ide_db::base_db::FileId;
2020-10-02 09:42:48 -05:00
use stdx::format_to;
2020-10-02 10:34:31 -05:00
use crate::{fixture, SearchScope};
2019-01-18 02:29:09 -06:00
#[test]
fn test_struct_literal_after_space() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
struct Foo $0{
2020-06-24 04:29:43 -05:00
a: i32,
}
impl Foo {
fn f() -> i32 { 42 }
}
fn main() {
let f: Foo;
f = Foo {a: Foo::f()};
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(0) 0..26 7..10
2020-10-02 09:42:48 -05:00
FileId(0) 101..104
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
}
#[test]
2020-06-24 04:29:43 -05:00
fn test_struct_literal_before_space() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
struct Foo$0 {}
2020-06-24 04:29:43 -05:00
fn main() {
let f: Foo;
f = Foo {};
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(0) 0..13 7..10
2020-10-02 09:42:48 -05:00
FileId(0) 41..44
FileId(0) 54..57
2020-10-02 09:42:48 -05:00
"#]],
);
}
#[test]
fn test_struct_literal_with_generic_type() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
struct Foo<T> $0{}
2020-06-24 04:29:43 -05:00
fn main() {
let f: Foo::<i32>;
f = Foo {};
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(0) 0..16 7..10
2020-10-02 09:42:48 -05:00
FileId(0) 64..67
2020-10-02 09:42:48 -05:00
"#]],
);
}
#[test]
fn test_struct_literal_for_tuple() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
struct Foo$0(i32);
2020-06-24 04:29:43 -05:00
fn main() {
let f: Foo;
f = Foo(1);
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(0) 0..16 7..10
2020-10-02 09:42:48 -05:00
FileId(0) 54..57
2020-10-02 09:42:48 -05:00
"#]],
);
}
2020-12-14 09:39:42 -06:00
#[test]
fn test_enum_after_space() {
check(
r#"
2021-01-06 14:15:48 -06:00
enum Foo $0{
2020-12-14 09:39:42 -06:00
A,
B,
}
fn main() {
let f: Foo;
f = Foo::A;
}
"#,
expect![[r#"
Foo Enum FileId(0) 0..26 5..8
2020-12-14 09:39:42 -06:00
FileId(0) 63..66
2020-12-14 09:39:42 -06:00
"#]],
);
}
#[test]
fn test_enum_before_space() {
check(
r#"
2021-01-06 14:15:48 -06:00
enum Foo$0 {
2020-12-14 09:39:42 -06:00
A,
B,
}
fn main() {
let f: Foo;
f = Foo::A;
}
"#,
expect![[r#"
Foo Enum FileId(0) 0..26 5..8
2020-12-14 09:39:42 -06:00
FileId(0) 50..53
FileId(0) 63..66
2020-12-14 09:39:42 -06:00
"#]],
);
}
#[test]
fn test_enum_with_generic_type() {
check(
r#"
2021-01-06 14:15:48 -06:00
enum Foo<T> $0{
2020-12-14 09:39:42 -06:00
A(T),
B,
}
fn main() {
let f: Foo<i8>;
f = Foo::A(1);
}
"#,
expect![[r#"
Foo Enum FileId(0) 0..32 5..8
2020-12-14 09:39:42 -06:00
FileId(0) 73..76
2020-12-14 09:39:42 -06:00
"#]],
);
}
#[test]
fn test_enum_for_tuple() {
check(
r#"
2021-01-06 14:15:48 -06:00
enum Foo$0{
2020-12-14 09:39:42 -06:00
A(i8),
B(i8),
}
fn main() {
let f: Foo;
f = Foo::A(1);
}
"#,
expect![[r#"
Foo Enum FileId(0) 0..33 5..8
2020-12-14 09:39:42 -06:00
FileId(0) 70..73
2020-12-14 09:39:42 -06:00
"#]],
);
}
2019-03-25 15:03:32 -05:00
#[test]
fn test_find_all_refs_for_local() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
fn main() {
let mut i = 1;
let j = 1;
2021-01-06 14:15:48 -06:00
i = i$0 + j;
2019-03-25 15:03:32 -05:00
2020-06-24 04:29:43 -05:00
{
i = 0;
}
2019-03-25 15:03:32 -05:00
2020-06-24 04:29:43 -05:00
i = 5;
}"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
i Local FileId(0) 20..25 24..25 Write
2020-10-02 09:42:48 -05:00
FileId(0) 50..51 Write
FileId(0) 54..55 Read
FileId(0) 76..77 Write
FileId(0) 94..95 Write
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
2019-03-25 15:03:32 -05:00
}
#[test]
fn search_filters_by_range() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
fn foo() {
2021-01-06 14:15:48 -06:00
let spam$0 = 92;
2020-06-24 04:29:43 -05:00
spam + spam
}
fn bar() {
let spam = 92;
spam + spam
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
spam Local FileId(0) 19..23 19..23
2020-10-02 09:42:48 -05:00
FileId(0) 34..38 Read
FileId(0) 41..45 Read
2020-10-02 09:42:48 -05:00
"#]],
);
}
2019-03-25 15:03:32 -05:00
#[test]
fn test_find_all_refs_for_param_inside() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
fn foo(i : u32) -> u32 { i$0 }
2020-06-24 04:29:43 -05:00
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
i ValueParam FileId(0) 7..8 7..8
2020-10-02 09:42:48 -05:00
FileId(0) 25..26 Read
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2019-03-25 15:03:32 -05:00
}
#[test]
fn test_find_all_refs_for_fn_param() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
2021-01-06 14:15:48 -06:00
fn foo(i$0 : u32) -> u32 { i }
2020-06-24 04:29:43 -05:00
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
i ValueParam FileId(0) 7..8 7..8
2020-10-02 09:42:48 -05:00
FileId(0) 25..26 Read
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2019-03-25 15:03:32 -05:00
}
2019-09-14 06:38:10 -05:00
#[test]
fn test_find_all_refs_field_name() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
//- /lib.rs
struct Foo {
2021-01-06 14:15:48 -06:00
pub spam$0: u32,
2020-06-24 04:29:43 -05:00
}
2019-09-14 06:38:10 -05:00
2020-06-24 04:29:43 -05:00
fn main(s: Foo) {
let f = s.spam;
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
spam Field FileId(0) 17..30 21..25
2020-10-02 09:42:48 -05:00
FileId(0) 67..71 Read
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
2019-09-14 06:38:10 -05:00
}
#[test]
fn test_find_all_refs_impl_item_name() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
struct Foo;
impl Foo {
2021-01-06 14:15:48 -06:00
fn f$0(&self) { }
2020-06-24 04:29:43 -05:00
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
f Function FileId(0) 27..43 30..31
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2019-09-14 06:38:10 -05:00
}
#[test]
fn test_find_all_refs_enum_var_name() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
enum Foo {
A,
2021-01-06 14:15:48 -06:00
B$0,
2020-06-24 04:29:43 -05:00
C,
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
B Variant FileId(0) 22..23 22..23
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2019-09-14 06:38:10 -05:00
}
#[test]
fn test_find_all_refs_enum_var_field() {
check(
r#"
enum Foo {
A,
2021-01-06 14:15:48 -06:00
B { field$0: u8 },
C,
}
"#,
expect![[r#"
field Field FileId(0) 26..35 26..31
"#]],
);
}
2019-10-10 18:11:23 -05:00
#[test]
2019-10-15 14:50:28 -05:00
fn test_find_all_refs_two_modules() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
//- /lib.rs
pub mod foo;
pub mod bar;
fn f() {
let i = foo::Foo { n: 5 };
}
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
//- /foo.rs
use crate::bar;
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
pub struct Foo {
pub n: u32,
}
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
fn f() {
let i = bar::Bar { n: 5 };
}
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
//- /bar.rs
use crate::foo;
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
pub struct Bar {
pub n: u32,
}
2019-10-10 18:11:23 -05:00
2020-06-24 04:29:43 -05:00
fn f() {
2021-01-06 14:15:48 -06:00
let i = foo::Foo$0 { n: 5 };
2020-06-24 04:29:43 -05:00
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(1) 17..51 28..31
2020-10-02 09:42:48 -05:00
FileId(0) 53..56
FileId(2) 79..82
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
2019-10-10 18:11:23 -05:00
}
2019-10-15 14:50:28 -05:00
// `mod foo;` is not in the results because `foo` is an `ast::Name`.
// So, there are two references: the first one is a definition of the `foo` module,
2019-10-15 14:50:28 -05:00
// which is the whole `foo.rs`, and the second one is in `use foo::Foo`.
#[test]
fn test_find_all_refs_decl_module() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
//- /lib.rs
2021-01-06 14:15:48 -06:00
mod foo$0;
2019-10-15 14:50:28 -05:00
2020-06-24 04:29:43 -05:00
use foo::Foo;
2019-10-15 14:50:28 -05:00
2020-06-24 04:29:43 -05:00
fn f() {
let i = Foo { n: 5 };
}
2019-10-15 14:50:28 -05:00
2020-06-24 04:29:43 -05:00
//- /foo.rs
pub struct Foo {
pub n: u32,
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
foo Module FileId(1) 0..35
2020-10-02 09:42:48 -05:00
FileId(0) 14..17
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2019-10-15 14:50:28 -05:00
}
#[test]
fn test_find_all_refs_super_mod_vis() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
//- /lib.rs
mod foo;
2020-06-24 04:29:43 -05:00
//- /foo.rs
mod some;
use some::Foo;
2020-06-24 04:29:43 -05:00
fn f() {
let i = Foo { n: 5 };
}
2020-06-24 04:29:43 -05:00
//- /foo/some.rs
2021-01-06 14:15:48 -06:00
pub(super) struct Foo$0 {
2020-06-24 04:29:43 -05:00
pub n: u32,
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
Foo Struct FileId(2) 0..41 18..21
2020-10-02 09:42:48 -05:00
FileId(1) 20..23
FileId(1) 47..50
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
}
#[test]
fn test_find_all_refs_with_scope() {
let code = r#"
//- /lib.rs
mod foo;
mod bar;
2021-01-06 14:15:48 -06:00
pub fn quux$0() {}
//- /foo.rs
fn f() { super::quux(); }
//- /bar.rs
fn f() { super::quux(); }
"#;
2020-10-02 09:42:48 -05:00
check_with_scope(
code,
None,
expect![[r#"
quux Function FileId(0) 19..35 26..30
FileId(1) 16..20
FileId(2) 16..20
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
2020-10-02 09:42:48 -05:00
check_with_scope(
code,
2020-10-02 09:13:48 -05:00
Some(SearchScope::single_file(FileId(2))),
2020-10-02 09:42:48 -05:00
expect![[r#"
quux Function FileId(0) 19..35 26..30
2020-10-02 09:42:48 -05:00
FileId(2) 16..20
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
}
2019-11-15 16:13:52 -06:00
#[test]
fn test_find_all_refs_macro_def() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
#[macro_export]
2021-01-06 14:15:48 -06:00
macro_rules! m1$0 { () => (()) }
2020-06-24 04:29:43 -05:00
fn foo() {
m1();
m1();
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
m1 Macro FileId(0) 0..46 29..31
2020-10-02 09:42:48 -05:00
FileId(0) 63..65
FileId(0) 73..75
2020-10-02 09:42:48 -05:00
"#]],
2020-01-08 15:35:58 -06:00
);
2019-11-15 16:13:52 -06:00
}
#[test]
2020-01-04 18:25:29 -06:00
fn test_basic_highlight_read_write() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
fn foo() {
2021-01-06 14:15:48 -06:00
let mut i$0 = 0;
2020-06-24 04:29:43 -05:00
i = i + 1;
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
i Local FileId(0) 19..24 23..24 Write
2020-10-02 09:42:48 -05:00
FileId(0) 34..35 Write
FileId(0) 38..39 Read
2020-10-02 09:42:48 -05:00
"#]],
);
}
2020-01-04 18:25:29 -06:00
#[test]
fn test_basic_highlight_field_read_write() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
struct S {
f: u32,
}
2020-01-04 18:25:29 -06:00
2020-06-24 04:29:43 -05:00
fn foo() {
let mut s = S{f: 0};
2021-01-06 14:15:48 -06:00
s.f$0 = 0;
2020-06-24 04:29:43 -05:00
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
f Field FileId(0) 15..21 15..16
2020-10-02 09:42:48 -05:00
FileId(0) 55..56 Read
FileId(0) 68..69 Write
2020-10-02 09:42:48 -05:00
"#]],
);
2020-01-04 18:25:29 -06:00
}
2020-01-10 13:56:58 -06:00
#[test]
fn test_basic_highlight_decl_no_write() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
fn foo() {
2021-01-06 14:15:48 -06:00
let i$0;
2020-06-24 04:29:43 -05:00
i = 1;
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
i Local FileId(0) 19..20 19..20
2020-10-02 09:42:48 -05:00
FileId(0) 26..27 Write
2020-10-02 09:42:48 -05:00
"#]],
2020-06-24 04:29:43 -05:00
);
2020-01-10 13:56:58 -06:00
}
#[test]
fn test_find_struct_function_refs_outside_module() {
2020-10-02 09:42:48 -05:00
check(
2020-06-24 04:29:43 -05:00
r#"
mod foo {
pub struct Foo;
2020-06-24 04:29:43 -05:00
impl Foo {
2021-01-06 14:15:48 -06:00
pub fn new$0() -> Foo { Foo }
2020-06-24 04:29:43 -05:00
}
}
2020-06-24 04:29:43 -05:00
fn main() {
let _f = foo::Foo::new();
}
"#,
2020-10-02 09:42:48 -05:00
expect![[r#"
new Function FileId(0) 54..81 61..64
2020-10-02 09:42:48 -05:00
FileId(0) 126..129
2020-10-02 09:42:48 -05:00
"#]],
);
}
2020-05-31 11:21:45 -05:00
#[test]
fn test_find_all_refs_nested_module() {
2020-10-02 09:42:48 -05:00
check(
r#"
//- /lib.rs
mod foo { mod bar; }
2020-05-31 11:21:45 -05:00
2021-01-06 14:15:48 -06:00
fn f$0() {}
2020-05-31 11:21:45 -05:00
2020-10-02 09:42:48 -05:00
//- /foo/bar.rs
use crate::f;
2020-05-31 11:21:45 -05:00
2020-10-02 09:42:48 -05:00
fn g() { f(); }
"#,
expect![[r#"
f Function FileId(0) 22..31 25..26
2020-05-31 11:21:45 -05:00
FileId(1) 11..12
FileId(1) 24..25
2020-10-02 09:42:48 -05:00
"#]],
);
}
#[test]
fn test_find_all_refs_struct_pat() {
check(
r#"
struct S {
2021-01-06 14:15:48 -06:00
field$0: u8,
}
fn f(s: S) {
match s {
S { field } => {}
}
}
"#,
expect![[r#"
field Field FileId(0) 15..24 15..20
FileId(0) 68..73 Read
"#]],
);
}
#[test]
fn test_find_all_refs_enum_var_pat() {
check(
r#"
enum En {
Variant {
2021-01-06 14:15:48 -06:00
field$0: u8,
}
}
fn f(e: En) {
match e {
En::Variant { field } => {}
}
}
"#,
expect![[r#"
field Field FileId(0) 32..41 32..37
FileId(0) 102..107 Read
"#]],
);
}
#[test]
fn test_find_all_refs_enum_var_privacy() {
check(
r#"
mod m {
pub enum En {
Variant {
2021-01-06 14:15:48 -06:00
field$0: u8,
}
}
}
fn f() -> m::En {
m::En::Variant { field: 0 }
}
"#,
expect![[r#"
field Field FileId(0) 56..65 56..61
FileId(0) 125..130 Read
"#]],
2020-11-28 15:55:34 -06:00
);
}
#[test]
fn test_find_self_refs() {
check(
r#"
struct Foo { bar: i32 }
impl Foo {
fn foo(self) {
2021-01-06 14:15:48 -06:00
let x = self$0.bar;
2020-11-28 15:55:34 -06:00
if true {
let _ = match () {
() => self,
};
}
}
}
"#,
expect![[r#"
self SelfParam FileId(0) 47..51 47..51
2020-11-28 15:55:34 -06:00
FileId(0) 71..75 Read
FileId(0) 152..156 Read
2020-11-28 15:55:34 -06:00
"#]],
2020-05-31 11:21:45 -05:00
);
}
#[test]
fn test_find_self_refs_decl() {
check(
r#"
struct Foo { bar: i32 }
impl Foo {
fn foo(self$0) {
self;
}
}
"#,
expect![[r#"
self SelfParam FileId(0) 47..51 47..51
FileId(0) 63..67 Read
"#]],
);
}
2020-10-02 09:42:48 -05:00
fn check(ra_fixture: &str, expect: Expect) {
check_with_scope(ra_fixture, None, expect)
2019-03-25 15:03:32 -05:00
}
2020-01-08 15:35:58 -06:00
2020-10-02 09:13:48 -05:00
fn check_with_scope(ra_fixture: &str, search_scope: Option<SearchScope>, expect: Expect) {
2020-10-02 10:34:31 -05:00
let (analysis, pos) = fixture::position(ra_fixture);
2020-10-02 09:42:48 -05:00
let refs = analysis.find_all_refs(pos, search_scope).unwrap().unwrap();
2020-01-08 15:35:58 -06:00
2020-10-02 09:42:48 -05:00
let mut actual = String::new();
{
let decl = refs.declaration;
format_to!(actual, "{}", decl.nav.debug_render());
2020-10-02 09:42:48 -05:00
if let Some(access) = decl.access {
format_to!(actual, " {:?}", access)
}
2020-10-02 09:42:48 -05:00
actual += "\n\n";
}
for (file_id, references) in refs.references {
for (range, access) in references {
format_to!(actual, "{:?} {:?}", file_id, range);
if let Some(access) = access {
2021-01-11 17:05:07 -06:00
format_to!(actual, " {:?}", access);
}
actual += "\n";
2020-10-02 09:42:48 -05:00
}
2020-01-08 15:35:58 -06:00
}
2020-10-02 09:42:48 -05:00
expect.assert_eq(&actual)
2020-01-08 15:35:58 -06:00
}
2020-12-16 14:35:15 -06:00
#[test]
fn test_find_lifetimes_function() {
check(
r#"
trait Foo<'a> {}
impl<'a> Foo<'a> for &'a () {}
2021-01-06 14:15:48 -06:00
fn foo<'a, 'b: 'a>(x: &'a$0 ()) -> &'a () where &'a (): Foo<'a> {
2020-12-16 14:35:15 -06:00
fn bar<'a>(_: &'a ()) {}
x
}
"#,
expect![[r#"
'a LifetimeParam FileId(0) 55..57 55..57
2020-12-16 14:35:15 -06:00
FileId(0) 63..65
FileId(0) 71..73
FileId(0) 82..84
FileId(0) 95..97
FileId(0) 106..108
2020-12-16 14:35:15 -06:00
"#]],
);
}
#[test]
fn test_find_lifetimes_type_alias() {
check(
r#"
2021-01-06 14:15:48 -06:00
type Foo<'a, T> where T: 'a$0 = &'a T;
2020-12-16 14:35:15 -06:00
"#,
expect![[r#"
'a LifetimeParam FileId(0) 9..11 9..11
2020-12-16 14:35:15 -06:00
FileId(0) 25..27
FileId(0) 31..33
2020-12-16 14:35:15 -06:00
"#]],
);
}
#[test]
fn test_find_lifetimes_trait_impl() {
check(
r#"
trait Foo<'a> {
fn foo() -> &'a ();
}
impl<'a> Foo<'a> for &'a () {
2021-01-06 14:15:48 -06:00
fn foo() -> &'a$0 () {
2020-12-16 14:35:15 -06:00
unimplemented!()
}
}
"#,
expect![[r#"
'a LifetimeParam FileId(0) 47..49 47..49
2020-12-16 14:35:15 -06:00
FileId(0) 55..57
FileId(0) 64..66
FileId(0) 89..91
2020-12-16 14:35:15 -06:00
"#]],
);
}
#[test]
fn test_map_range_to_original() {
check(
r#"
macro_rules! foo {($i:ident) => {$i} }
fn main() {
2021-01-06 14:15:48 -06:00
let a$0 = "test";
foo!(a);
}
"#,
expect![[r#"
a Local FileId(0) 59..60 59..60
FileId(0) 80..81 Read
"#]],
);
}
#[test]
fn test_map_range_to_original_ref() {
check(
r#"
macro_rules! foo {($i:ident) => {$i} }
fn main() {
let a = "test";
2021-01-06 14:15:48 -06:00
foo!(a$0);
}
"#,
expect![[r#"
a Local FileId(0) 59..60 59..60
FileId(0) 80..81 Read
"#]],
);
}
2020-12-23 10:15:01 -06:00
#[test]
fn test_find_labels() {
check(
r#"
fn foo<'a>() -> &'a () {
'a: loop {
'b: loop {
2021-01-06 14:15:48 -06:00
continue 'a$0;
2020-12-23 10:15:01 -06:00
}
break 'a;
}
}
"#,
expect![[r#"
'a Label FileId(0) 29..32 29..31
2020-12-23 10:15:01 -06:00
FileId(0) 80..82
FileId(0) 108..110
2020-12-23 10:15:01 -06:00
"#]],
);
}
2021-01-01 03:07:01 -06:00
#[test]
fn test_find_const_param() {
check(
r#"
2021-01-06 14:15:48 -06:00
fn foo<const FOO$0: usize>() -> usize {
2021-01-01 03:07:01 -06:00
FOO
}
"#,
expect![[r#"
FOO ConstParam FileId(0) 7..23 13..16
2021-01-01 03:07:01 -06:00
FileId(0) 42..45
2021-01-01 03:07:01 -06:00
"#]],
);
}
#[test]
fn test_find_self_ty_in_trait_def() {
check(
r#"
trait Foo {
fn f() -> Self$0;
}
"#,
expect![[r#"
Self TypeParam FileId(0) 6..9 6..9
FileId(0) 26..30
"#]],
);
}
#[test]
fn test_self_variant_with_payload() {
check(
r#"
enum Foo { Bar() }
impl Foo {
fn foo(self) {
match self {
Self::Bar$0() => (),
}
}
}
"#,
expect![[r#"
2021-02-12 12:00:37 -06:00
Bar Variant FileId(0) 11..16 11..14
2021-02-12 12:00:37 -06:00
FileId(0) 89..92
"#]],
);
}
2019-01-18 02:29:09 -06:00
}