rust/crates/ra_ide/src/goto_definition.rs

763 lines
19 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-11-28 03:50:26 -06:00
use hir::{db::AstDatabase, InFile};
2019-01-08 13:33:36 -06:00
use ra_syntax::{
ast::{self, DocCommentsOwner},
match_ast, AstNode, SyntaxKind, SyntaxNode,
2019-01-08 13:33:36 -06:00
};
use crate::{
db::RootDatabase,
2019-11-11 02:15:19 -06:00
display::{ShortLabel, ToNav},
expand::descend_into_macros,
2019-10-12 10:47:17 -05:00
references::{classify_name_ref, NameKind::*},
FilePosition, NavigationTarget, RangeInfo,
};
2019-01-08 13:33:36 -06:00
2019-01-08 16:38:51 -06:00
pub(crate) fn goto_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
position: FilePosition,
2019-01-15 12:02:42 -06:00
) -> Option<RangeInfo<Vec<NavigationTarget>>> {
let file = db.parse_or_expand(position.file_id.into())?;
let original_token =
file.token_at_offset(position.offset).find(|it| it.kind() == SyntaxKind::IDENT)?;
let token = descend_into_macros(db, position.file_id, original_token.clone());
2019-11-16 07:49:26 -06:00
let nav_targets = match_ast! {
2019-11-20 00:40:36 -06:00
match (token.value.parent()) {
ast::NameRef(name_ref) => {
reference_definition(db, token.with_value(&name_ref)).to_vec()
},
ast::Name(name) => {
name_definition(db, token.with_value(&name))?
},
_ => return None,
}
};
Some(RangeInfo::new(original_token.text_range(), nav_targets))
}
#[derive(Debug)]
pub(crate) enum ReferenceResult {
Exact(NavigationTarget),
Approximate(Vec<NavigationTarget>),
}
impl ReferenceResult {
fn to_vec(self) -> Vec<NavigationTarget> {
use self::ReferenceResult::*;
match self {
Exact(target) => vec![target],
Approximate(vec) => vec,
}
}
}
2019-01-08 16:38:51 -06:00
pub(crate) fn reference_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
2019-11-28 03:50:26 -06:00
name_ref: InFile<&ast::NameRef>,
2019-01-15 12:02:42 -06:00
) -> ReferenceResult {
use self::ReferenceResult::*;
2019-11-16 04:33:25 -06:00
let name_kind = classify_name_ref(db, name_ref).map(|d| d.kind);
match name_kind {
2019-12-07 11:54:18 -06:00
Some(Macro(it)) => return Exact(it.to_nav(db)),
Some(Field(it)) => return Exact(it.to_nav(db)),
Some(TypeParam(it)) => return Exact(it.to_nav(db)),
2019-12-07 11:54:18 -06:00
Some(AssocItem(it)) => return Exact(it.to_nav(db)),
Some(Local(it)) => return Exact(it.to_nav(db)),
2019-05-30 08:10:07 -05:00
Some(Def(def)) => match NavigationTarget::from_def(db, def) {
Some(nav) => return Exact(nav),
None => return Approximate(vec![]),
},
2019-11-26 12:18:26 -06:00
Some(SelfType(imp)) => {
// FIXME: ideally, this should point to the type in the impl, and
// not at the whole impl. And goto **type** definition should bring
// us to the actual type
return Exact(imp.to_nav(db));
}
None => {}
};
2019-04-10 03:15:55 -05:00
// Fallback index based approach:
2019-11-20 00:40:36 -06:00
let navs = crate::symbol_index::index_resolve(db, name_ref.value)
2019-01-08 13:33:36 -06:00
.into_iter()
2019-11-11 02:15:19 -06:00
.map(|s| s.to_nav(db))
2019-01-08 13:33:36 -06:00
.collect();
2019-01-15 12:02:42 -06:00
Approximate(navs)
2019-01-08 13:33:36 -06:00
}
pub(crate) fn name_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
2019-11-28 03:50:26 -06:00
name: InFile<&ast::Name>,
2019-01-15 12:02:42 -06:00
) -> Option<Vec<NavigationTarget>> {
2019-11-20 00:40:36 -06:00
let parent = name.value.syntax().parent()?;
2019-07-19 04:56:47 -05:00
if let Some(module) = ast::Module::cast(parent.clone()) {
2019-01-08 13:33:36 -06:00
if module.has_semi() {
2019-11-20 04:09:21 -06:00
let src = name.with_value(module);
2019-09-16 05:48:54 -05:00
if let Some(child_module) = hir::Module::from_declaration(db, src) {
2019-11-11 02:15:19 -06:00
let nav = child_module.to_nav(db);
2019-01-15 12:02:42 -06:00
return Some(vec![nav]);
2019-01-08 13:33:36 -06:00
}
}
}
2019-11-20 04:09:21 -06:00
if let Some(nav) = named_target(db, name.with_value(&parent)) {
return Some(vec![nav]);
}
2019-01-15 12:02:42 -06:00
None
2019-01-08 13:33:36 -06:00
}
2019-11-28 03:50:26 -06:00
fn named_target(db: &RootDatabase, node: InFile<&SyntaxNode>) -> Option<NavigationTarget> {
2019-10-05 09:03:03 -05:00
match_ast! {
2019-11-20 00:40:36 -06:00
match (node.value) {
2019-10-05 09:03:03 -05:00
ast::StructDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::EnumDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::EnumVariant(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::FnDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::TypeAliasDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::ConstDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::StaticDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::TraitDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::RecordFieldDef(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::Module(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
it.short_label(),
))
},
ast::MacroCall(it) => {
Some(NavigationTarget::from_named(
db,
2019-11-20 04:09:21 -06:00
node.with_value(&it),
2019-10-05 09:03:03 -05:00
it.doc_comment_text(),
None,
))
},
_ => None,
}
}
}
2019-01-08 13:33:36 -06:00
#[cfg(test)]
mod tests {
2019-10-22 15:46:53 -05:00
use test_utils::covers;
2019-01-25 11:32:34 -06:00
2019-01-08 13:33:36 -06:00
use crate::mock_analysis::analysis_and_position;
2019-02-11 10:18:27 -06:00
fn check_goto(fixture: &str, expected: &str) {
let (analysis, pos) = analysis_and_position(fixture);
2019-01-11 09:17:20 -06:00
let mut navs = analysis.goto_definition(pos).unwrap().unwrap().info;
assert_eq!(navs.len(), 1);
let nav = navs.pop().unwrap();
nav.assert_match(expected);
}
2019-01-08 13:33:36 -06:00
#[test]
2019-01-08 16:38:51 -06:00
fn goto_definition_works_in_items() {
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
struct Foo;
enum E { X(Foo<|>) }
",
2019-01-11 09:17:20 -06:00
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
}
#[test]
fn goto_definition_works_at_start_of_item() {
check_goto(
"
//- /lib.rs
struct Foo;
enum E { X(<|>Foo) }
",
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
}
#[test]
fn goto_definition_resolves_correct_name() {
2019-01-11 09:17:20 -06:00
check_goto(
"
//- /lib.rs
use a::Foo;
mod a;
mod b;
enum E { X(Foo<|>) }
//- /a.rs
struct Foo;
//- /b.rs
struct Foo;
",
2019-01-11 09:17:20 -06:00
"Foo STRUCT_DEF FileId(2) [0; 11) [7; 10)",
2019-01-08 13:33:36 -06:00
);
}
#[test]
2019-01-08 16:38:51 -06:00
fn goto_definition_works_for_module_declaration() {
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
mod <|>foo;
//- /foo.rs
// empty
2019-01-11 09:17:20 -06:00
",
"foo SOURCE_FILE FileId(2) [0; 10)",
2019-01-08 13:33:36 -06:00
);
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
mod <|>foo;
//- /foo/mod.rs
// empty
2019-01-11 09:17:20 -06:00
",
"foo SOURCE_FILE FileId(2) [0; 10)",
2019-01-08 13:33:36 -06:00
);
}
2019-04-24 15:16:50 -05:00
#[test]
fn goto_definition_works_for_macros() {
2019-10-22 15:46:53 -05:00
covers!(goto_definition_works_for_macros);
2019-04-24 15:16:50 -05:00
check_goto(
"
//- /lib.rs
macro_rules! foo {
() => {
{}
};
}
fn bar() {
<|>foo!();
}
",
"foo MACRO_CALL FileId(1) [0; 50) [13; 16)",
);
}
2019-06-01 06:34:19 -05:00
#[test]
fn goto_definition_works_for_macros_from_other_crates() {
2019-10-22 15:46:53 -05:00
covers!(goto_definition_works_for_macros);
2019-06-01 06:34:19 -05:00
check_goto(
"
//- /lib.rs
use foo::foo;
fn bar() {
<|>foo!();
}
//- /foo/lib.rs
#[macro_export]
macro_rules! foo {
2019-06-11 10:14:27 -05:00
() => {
2019-06-01 06:34:19 -05:00
{}
};
2019-06-11 10:14:27 -05:00
}
2019-06-01 06:34:19 -05:00
",
2019-06-11 10:14:27 -05:00
"foo MACRO_CALL FileId(2) [0; 66) [29; 32)",
2019-06-01 06:34:19 -05:00
);
}
2019-10-31 12:29:56 -05:00
#[test]
fn goto_definition_works_for_macros_in_use_tree() {
check_goto(
"
//- /lib.rs
use foo::foo<|>;
//- /foo/lib.rs
#[macro_export]
macro_rules! foo {
() => {
{}
};
}
",
"foo MACRO_CALL FileId(2) [0; 66) [29; 32)",
);
}
2019-11-03 11:49:49 -06:00
#[test]
fn goto_definition_works_for_macro_defined_fn_with_arg() {
check_goto(
"
//- /lib.rs
macro_rules! define_fn {
($name:ident) => (fn $name() {})
}
define_fn!(
foo
)
fn bar() {
<|>foo();
}
",
"foo FN_DEF FileId(1) [80; 83) [80; 83)",
);
}
#[test]
fn goto_definition_works_for_macro_defined_fn_no_arg() {
check_goto(
"
//- /lib.rs
macro_rules! define_fn {
() => (fn foo() {})
}
define_fn!();
fn bar() {
<|>foo();
}
",
"foo FN_DEF FileId(1) [39; 42) [39; 42)",
);
}
#[test]
fn goto_definition_works_for_methods() {
2019-10-22 15:46:53 -05:00
covers!(goto_definition_works_for_methods);
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
fn frobnicate(&self) { }
}
fn bar(foo: &Foo) {
foo.frobnicate<|>();
}
",
"frobnicate FN_DEF FileId(1) [27; 52) [30; 40)",
);
2019-01-25 11:32:34 -06:00
}
2019-01-25 11:32:34 -06:00
#[test]
fn goto_definition_works_for_fields() {
2019-10-22 15:46:53 -05:00
covers!(goto_definition_works_for_fields);
check_goto(
"
//- /lib.rs
2019-01-25 11:32:34 -06:00
struct Foo {
spam: u32,
}
fn bar(foo: &Foo) {
foo.spam<|>;
}
",
2019-08-23 07:55:21 -05:00
"spam RECORD_FIELD_DEF FileId(1) [17; 26) [17; 21)",
);
}
#[test]
2019-08-23 07:55:21 -05:00
fn goto_definition_works_for_record_fields() {
2019-10-22 15:46:53 -05:00
covers!(goto_definition_works_for_record_fields);
check_goto(
"
//- /lib.rs
struct Foo {
spam: u32,
}
fn bar() -> Foo {
Foo {
spam<|>: 0,
}
}
",
2019-08-23 07:55:21 -05:00
"spam RECORD_FIELD_DEF FileId(1) [17; 26) [17; 21)",
);
}
2019-10-31 09:13:52 -05:00
2019-12-13 14:59:25 -06:00
#[test]
fn goto_for_tuple_fields() {
check_goto(
"
//- /lib.rs
struct Foo(u32);
fn bar() {
let foo = Foo(0);
foo.<|>0;
}
",
"TUPLE_FIELD_DEF FileId(1) [11; 14)",
);
}
2019-10-31 09:13:52 -05:00
#[test]
fn goto_definition_works_for_ufcs_inherent_methods() {
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
fn frobnicate() { }
}
fn bar(foo: &Foo) {
Foo::frobnicate<|>();
}
",
"frobnicate FN_DEF FileId(1) [27; 47) [30; 40)",
);
}
#[test]
fn goto_definition_works_for_ufcs_trait_methods_through_traits() {
check_goto(
"
//- /lib.rs
trait Foo {
fn frobnicate();
}
fn bar() {
Foo::frobnicate<|>();
}
",
"frobnicate FN_DEF FileId(1) [16; 32) [19; 29)",
);
}
#[test]
fn goto_definition_works_for_ufcs_trait_methods_through_self() {
check_goto(
"
//- /lib.rs
struct Foo;
trait Trait {
fn frobnicate();
}
impl Trait for Foo {}
fn bar() {
Foo::frobnicate<|>();
}
",
"frobnicate FN_DEF FileId(1) [30; 46) [33; 43)",
);
}
#[test]
fn goto_definition_on_self() {
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
pub fn new() -> Self {
Self<|> {}
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [12; 73)",
);
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
pub fn new() -> Self<|> {
Self {}
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [12; 73)",
);
check_goto(
"
//- /lib.rs
enum Foo { A }
impl Foo {
pub fn new() -> Self<|> {
Foo::A
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [15; 75)",
);
check_goto(
"
//- /lib.rs
enum Foo { A }
impl Foo {
pub fn thing(a: &Self<|>) {
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [15; 62)",
);
}
#[test]
fn goto_definition_on_self_in_trait_impl() {
check_goto(
"
//- /lib.rs
struct Foo;
trait Make {
fn new() -> Self;
}
impl Make for Foo {
fn new() -> Self {
Self<|> {}
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [49; 115)",
);
check_goto(
"
//- /lib.rs
struct Foo;
trait Make {
fn new() -> Self;
}
impl Make for Foo {
fn new() -> Self<|> {
2019-11-26 12:18:26 -06:00
Self {}
}
}
",
2019-11-26 12:18:26 -06:00
"impl IMPL_BLOCK FileId(1) [49; 115)",
);
}
#[test]
fn goto_definition_works_when_used_on_definition_name_itself() {
check_goto(
"
//- /lib.rs
struct Foo<|> { value: u32 }
",
"Foo STRUCT_DEF FileId(1) [0; 25) [7; 10)",
);
check_goto(
r#"
//- /lib.rs
struct Foo {
field<|>: string,
}
"#,
2019-08-23 07:55:21 -05:00
"field RECORD_FIELD_DEF FileId(1) [17; 30) [17; 22)",
);
check_goto(
"
//- /lib.rs
fn foo_test<|>() {
}
",
"foo_test FN_DEF FileId(1) [0; 17) [3; 11)",
);
check_goto(
"
//- /lib.rs
enum Foo<|> {
Variant,
}
",
"Foo ENUM_DEF FileId(1) [0; 25) [5; 8)",
);
check_goto(
"
//- /lib.rs
enum Foo {
Variant1,
Variant2<|>,
Variant3,
}
",
"Variant2 ENUM_VARIANT FileId(1) [29; 37) [29; 37)",
);
check_goto(
r#"
//- /lib.rs
static inner<|>: &str = "";
"#,
"inner STATIC_DEF FileId(1) [0; 24) [7; 12)",
);
check_goto(
r#"
//- /lib.rs
const inner<|>: &str = "";
"#,
"inner CONST_DEF FileId(1) [0; 23) [6; 11)",
);
check_goto(
r#"
//- /lib.rs
type Thing<|> = Option<()>;
"#,
"Thing TYPE_ALIAS_DEF FileId(1) [0; 24) [5; 10)",
);
check_goto(
r#"
//- /lib.rs
trait Foo<|> {
}
"#,
"Foo TRAIT_DEF FileId(1) [0; 13) [6; 9)",
);
check_goto(
r#"
//- /lib.rs
mod bar<|> {
}
"#,
"bar MODULE FileId(1) [0; 11) [4; 7)",
);
}
2019-11-16 07:49:26 -06:00
#[test]
fn goto_from_macro() {
check_goto(
"
//- /lib.rs
macro_rules! id {
($($tt:tt)*) => { $($tt)* }
}
fn foo() {}
id! {
fn bar() {
fo<|>o();
}
}
mod confuse_index { fn foo(); }
2019-11-16 07:49:26 -06:00
",
"foo FN_DEF FileId(1) [52; 63) [55; 58)",
);
}
#[test]
fn goto_through_format() {
check_goto(
"
//- /lib.rs
#[macro_export]
macro_rules! format {
($($arg:tt)*) => ($crate::fmt::format($crate::__export::format_args!($($arg)*)))
}
#[rustc_builtin_macro]
#[macro_export]
macro_rules! format_args {
($fmt:expr) => ({ /* compiler built-in */ });
($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ })
}
pub mod __export {
pub use crate::format_args;
fn foo() {} // for index confusion
}
fn foo() -> i8 {}
fn test() {
format!(\"{}\", fo<|>o())
}
",
2019-12-08 04:22:39 -06:00
"foo FN_DEF FileId(1) [398; 415) [401; 404)",
);
}
2019-12-07 11:54:18 -06:00
#[test]
fn goto_for_type_param() {
check_goto(
"
//- /lib.rs
struct Foo<T> {
t: <|>T,
}
",
"T TYPE_PARAM FileId(1) [11; 12)",
);
}
2019-01-08 13:33:36 -06:00
}