2019-09-30 03:58:53 -05:00
|
|
|
//! 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::{
|
2019-07-04 15:05:17 -05:00
|
|
|
ast::{self, DocCommentsOwner},
|
2019-12-13 15:00:05 -06:00
|
|
|
match_ast, AstNode,
|
|
|
|
SyntaxKind::*,
|
|
|
|
SyntaxNode, SyntaxToken, TokenAtOffset,
|
2019-01-08 13:33:36 -06:00
|
|
|
};
|
|
|
|
|
2019-05-22 11:49:22 -05:00
|
|
|
use crate::{
|
|
|
|
db::RootDatabase,
|
2019-11-11 02:15:19 -06:00
|
|
|
display::{ShortLabel, ToNav},
|
2019-11-18 05:23:24 -06:00
|
|
|
expand::descend_into_macros,
|
2019-10-12 10:47:17 -05:00
|
|
|
references::{classify_name_ref, NameKind::*},
|
2019-07-04 15:05:17 -05:00
|
|
|
FilePosition, NavigationTarget, RangeInfo,
|
2019-05-22 11:49:22 -05:00
|
|
|
};
|
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>>> {
|
2019-11-18 05:23:24 -06:00
|
|
|
let file = db.parse_or_expand(position.file_id.into())?;
|
2019-12-13 15:00:05 -06:00
|
|
|
let original_token = pick_best(file.token_at_offset(position.offset))?;
|
2019-12-09 11:42:45 -06:00
|
|
|
let token = descend_into_macros(db, position.file_id, original_token.clone());
|
2019-11-16 07:49:26 -06:00
|
|
|
|
2019-12-09 11:42:45 -06:00
|
|
|
let nav_targets = match_ast! {
|
2019-11-20 00:40:36 -06:00
|
|
|
match (token.value.parent()) {
|
2019-11-17 11:15:55 -06:00
|
|
|
ast::NameRef(name_ref) => {
|
2019-12-09 11:42:45 -06:00
|
|
|
reference_definition(db, token.with_value(&name_ref)).to_vec()
|
2019-11-17 11:15:55 -06:00
|
|
|
},
|
|
|
|
ast::Name(name) => {
|
2019-12-09 11:42:45 -06:00
|
|
|
name_definition(db, token.with_value(&name))?
|
2019-11-17 11:15:55 -06:00
|
|
|
},
|
|
|
|
_ => return None,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-12-09 11:42:45 -06:00
|
|
|
Some(RangeInfo::new(original_token.text_range(), nav_targets))
|
2019-11-16 13:18:07 -06:00
|
|
|
}
|
|
|
|
|
2019-12-13 15:00:05 -06:00
|
|
|
fn pick_best(tokens: TokenAtOffset<SyntaxToken>) -> Option<SyntaxToken> {
|
|
|
|
return tokens.max_by_key(priority);
|
|
|
|
fn priority(n: &SyntaxToken) -> usize {
|
|
|
|
match n.kind() {
|
|
|
|
IDENT | INT_NUMBER => 2,
|
|
|
|
kind if kind.is_trivia() => 0,
|
|
|
|
_ => 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-28 08:43:10 -05:00
|
|
|
#[derive(Debug)]
|
2019-01-13 04:31:37 -06:00
|
|
|
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 {
|
2019-01-13 04:31:37 -06:00
|
|
|
use self::ReferenceResult::*;
|
2019-03-01 17:26:49 -06:00
|
|
|
|
2019-11-16 04:33:25 -06:00
|
|
|
let name_kind = classify_name_ref(db, name_ref).map(|d| d.kind);
|
2019-10-03 19:20:14 -05:00
|
|
|
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)),
|
2019-12-07 13:09:53 -06:00
|
|
|
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));
|
2019-02-27 09:22:53 -06:00
|
|
|
}
|
2019-05-22 11:49:22 -05:00
|
|
|
None => {}
|
|
|
|
};
|
2019-03-01 17:26:49 -06:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-02-27 01:49:22 -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-02-23 03:02:42 -06:00
|
|
|
|
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-02-23 03:02:42 -06:00
|
|
|
|
2019-11-20 04:09:21 -06:00
|
|
|
if let Some(nav) = named_target(db, name.with_value(&parent)) {
|
2019-02-23 03:02:42 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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(
|
2019-11-03 11:49:41 -06:00
|
|
|
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-02-23 03:02:42 -06:00
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-12-14 11:20:07 -06:00
|
|
|
use test_utils::{assert_eq_text, 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-12-18 08:33:36 -06:00
|
|
|
fn check_goto(fixture: &str, expected: &str, expected_range: &str) {
|
2019-02-11 10:18:27 -06:00
|
|
|
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);
|
2019-12-14 11:20:07 -06:00
|
|
|
|
|
|
|
let nav = navs.pop().unwrap();
|
2019-12-18 08:33:36 -06:00
|
|
|
let file_text = analysis.file_text(nav.file_id()).unwrap();
|
2019-12-14 11:20:07 -06:00
|
|
|
|
2019-12-18 08:33:36 -06:00
|
|
|
let mut actual = file_text[nav.full_range()].to_string();
|
|
|
|
if let Some(focus) = nav.focus_range() {
|
|
|
|
actual += "|";
|
|
|
|
actual += &file_text[focus];
|
|
|
|
}
|
|
|
|
|
|
|
|
if !expected_range.contains("...") {
|
|
|
|
test_utils::assert_eq_text!(&actual, expected_range);
|
|
|
|
} else {
|
|
|
|
let mut parts = expected_range.split("...");
|
|
|
|
let prefix = parts.next().unwrap();
|
|
|
|
let suffix = parts.next().unwrap();
|
|
|
|
assert!(
|
|
|
|
actual.starts_with(prefix) && actual.ends_with(suffix),
|
|
|
|
"\nExpected: {}\n Actual: {}\n",
|
|
|
|
expected_range,
|
|
|
|
actual
|
|
|
|
);
|
|
|
|
}
|
2019-12-14 11:20:07 -06:00
|
|
|
|
|
|
|
nav.assert_match(expected);
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-12-13 12:20:02 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_at_start_of_item() {
|
2019-12-13 12:20:02 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
enum E { X(<|>Foo) }
|
|
|
|
",
|
|
|
|
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-01-07 17:30:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_definition_resolves_correct_name() {
|
2019-01-11 09:17:20 -06:00
|
|
|
check_goto(
|
2019-01-07 17:30:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use a::Foo;
|
|
|
|
mod a;
|
|
|
|
mod b;
|
|
|
|
enum E { X(Foo<|>) }
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-07 17:30:49 -06:00
|
|
|
//- /a.rs
|
|
|
|
struct Foo;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-07 17:30:49 -06:00
|
|
|
//- /b.rs
|
|
|
|
struct Foo;
|
|
|
|
",
|
2019-01-11 09:17:20 -06:00
|
|
|
"Foo STRUCT_DEF FileId(2) [0; 11) [7; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo;|Foo",
|
2019-01-08 13:33:36 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_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;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
//- /foo.rs
|
|
|
|
// empty
|
2019-01-11 09:17:20 -06:00
|
|
|
",
|
|
|
|
"foo SOURCE_FILE FileId(2) [0; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"// empty\n\n",
|
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;
|
2019-12-18 07:52:58 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
//- /foo/mod.rs
|
|
|
|
// empty
|
2019-01-11 09:17:20 -06:00
|
|
|
",
|
|
|
|
"foo SOURCE_FILE FileId(2) [0; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"// empty\n\n",
|
2019-01-08 13:33:36 -06:00
|
|
|
);
|
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
|
2019-04-24 15:16:50 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros() {
|
|
|
|
covers!(goto_def_for_macros);
|
2019-04-24 15:16:50 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-04-24 15:16:50 -05:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo!();
|
|
|
|
}
|
|
|
|
",
|
2019-12-18 08:33:36 -06:00
|
|
|
"foo MACRO_CALL FileId(1) [0; 33) [13; 16)",
|
|
|
|
"macro_rules! foo { () => { () } }|foo",
|
2019-04-24 15:16:50 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-01 06:34:19 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros_from_other_crates() {
|
|
|
|
covers!(goto_def_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]
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-06-01 06:34:19 -05:00
|
|
|
",
|
2019-12-18 08:33:36 -06:00
|
|
|
"foo MACRO_CALL FileId(2) [0; 49) [29; 32)",
|
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }|foo",
|
2019-06-01 06:34:19 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-31 12:29:56 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macros_in_use_tree() {
|
2019-10-31 12:29:56 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
use foo::foo<|>;
|
|
|
|
|
|
|
|
//- /foo/lib.rs
|
|
|
|
#[macro_export]
|
2019-12-18 08:33:36 -06:00
|
|
|
macro_rules! foo { () => { () } }
|
2019-10-31 12:29:56 -05:00
|
|
|
",
|
2019-12-18 08:33:36 -06:00
|
|
|
"foo MACRO_CALL FileId(2) [0; 49) [29; 32)",
|
|
|
|
"#[macro_export]\nmacro_rules! foo { () => { () } }|foo",
|
2019-10-31 12:29:56 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-03 11:49:49 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macro_defined_fn_with_arg() {
|
2019-12-18 08:33:36 -06:00
|
|
|
check_goto(
|
2019-11-03 11:49:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! define_fn {
|
|
|
|
($name:ident) => (fn $name() {})
|
|
|
|
}
|
|
|
|
|
2019-12-14 11:20:07 -06:00
|
|
|
define_fn!(foo);
|
2019-11-03 11:49:49 -06:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo();
|
|
|
|
}
|
|
|
|
",
|
2019-12-14 11:20:07 -06:00
|
|
|
"foo FN_DEF FileId(1) [64; 80) [75; 78)",
|
|
|
|
"define_fn!(foo);|foo",
|
2019-11-03 11:49:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_macro_defined_fn_no_arg() {
|
2019-12-18 08:33:36 -06:00
|
|
|
check_goto(
|
2019-11-03 11:49:49 -06:00
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! define_fn {
|
|
|
|
() => (fn foo() {})
|
|
|
|
}
|
|
|
|
|
|
|
|
define_fn!();
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
<|>foo();
|
|
|
|
}
|
|
|
|
",
|
2019-12-14 11:20:07 -06:00
|
|
|
"foo FN_DEF FileId(1) [51; 64) [51; 64)",
|
|
|
|
"define_fn!();|define_fn!();",
|
2019-11-03 11:49:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-20 09:11:07 -06:00
|
|
|
#[test]
|
|
|
|
fn goto_definition_works_for_macro_inside_pattern() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! foo {() => {0}}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
match (0,1) {
|
|
|
|
(<|>foo!(), _) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"foo MACRO_CALL FileId(1) [0; 28) [13; 16)",
|
|
|
|
"macro_rules! foo {() => {0}}|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_definition_works_for_macro_inside_match_arm_lhs() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! foo {() => {0}}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
match 0 {
|
|
|
|
<|>foo!() => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"foo MACRO_CALL FileId(1) [0; 28) [13; 16)",
|
|
|
|
"macro_rules! foo {() => {0}}|foo",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-13 09:56:57 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_methods() {
|
|
|
|
covers!(goto_def_for_methods);
|
2019-01-13 09:56:57 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
2019-12-18 08:33:36 -06:00
|
|
|
fn frobnicate(&self) { }
|
2019-01-13 09:56:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
foo.frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2019-12-18 08:33:36 -06:00
|
|
|
"frobnicate FN_DEF FileId(1) [27; 51) [30; 40)",
|
|
|
|
"fn frobnicate(&self) { }|frobnicate",
|
2019-01-13 09:56:57 -06:00
|
|
|
);
|
2019-01-25 11:32:34 -06:00
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
|
2019-01-25 11:32:34 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_fields() {
|
|
|
|
covers!(goto_def_for_fields);
|
2019-01-13 09:56:57 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2019-01-25 11:32:34 -06:00
|
|
|
struct Foo {
|
|
|
|
spam: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
foo.spam<|>;
|
|
|
|
}
|
2019-01-13 09:56:57 -06:00
|
|
|
",
|
2019-08-23 07:55:21 -05:00
|
|
|
"spam RECORD_FIELD_DEF FileId(1) [17; 26) [17; 21)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"spam: u32|spam",
|
2019-01-13 09:56:57 -06:00
|
|
|
);
|
|
|
|
}
|
2019-02-23 03:02:42 -06:00
|
|
|
|
2019-02-27 09:22:53 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_record_fields() {
|
|
|
|
covers!(goto_def_for_record_fields);
|
2019-02-27 09:22:53 -06:00
|
|
|
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-12-18 08:33:36 -06:00
|
|
|
"spam: u32|spam",
|
2019-02-27 09:22:53 -06:00
|
|
|
);
|
|
|
|
}
|
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-12-18 08:33:36 -06:00
|
|
|
"u32",
|
2019-12-13 14:59:25 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-31 09:13:52 -05:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_inherent_methods() {
|
2019-10-31 09:13:52 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
2019-12-18 08:33:36 -06:00
|
|
|
fn frobnicate() { }
|
2019-10-31 09:13:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(foo: &Foo) {
|
|
|
|
Foo::frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
2019-12-18 08:33:36 -06:00
|
|
|
"frobnicate FN_DEF FileId(1) [27; 46) [30; 40)",
|
|
|
|
"fn frobnicate() { }|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_trait_methods_through_traits() {
|
2019-10-31 09:13:52 -05:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
trait Foo {
|
|
|
|
fn frobnicate();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
Foo::frobnicate<|>();
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"frobnicate FN_DEF FileId(1) [16; 32) [19; 29)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate();|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_for_ufcs_trait_methods_through_self() {
|
2019-10-31 09:13:52 -05:00
|
|
|
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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn frobnicate();|frobnicate",
|
2019-10-31 09:13:52 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-03-07 02:32:39 -06:00
|
|
|
#[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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Make for Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
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-03-07 02:32:39 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
2019-11-26 12:18:26 -06:00
|
|
|
"impl IMPL_BLOCK FileId(1) [49; 115)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"impl Make for Foo {...}",
|
2019-03-07 02:32:39 -06:00
|
|
|
);
|
|
|
|
}
|
2019-02-27 09:22:53 -06:00
|
|
|
|
2019-02-23 03:02:42 -06:00
|
|
|
#[test]
|
2019-12-20 07:47:01 -06:00
|
|
|
fn goto_def_when_used_on_definition_name_itself() {
|
2019-02-23 03:02:42 -06:00
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo<|> { value: u32 }
|
|
|
|
",
|
|
|
|
"Foo STRUCT_DEF FileId(1) [0; 25) [7; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"struct Foo { value: u32 }|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
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)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"field: string|field",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
fn foo_test<|>() { }
|
2019-02-23 03:02:42 -06:00
|
|
|
",
|
|
|
|
"foo_test FN_DEF FileId(1) [0; 17) [3; 11)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn foo_test() { }|foo_test",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo<|> {
|
|
|
|
Variant,
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"Foo ENUM_DEF FileId(1) [0; 25) [5; 8)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"enum Foo {...}|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
enum Foo {
|
|
|
|
Variant1,
|
|
|
|
Variant2<|>,
|
|
|
|
Variant3,
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"Variant2 ENUM_VARIANT FileId(1) [29; 37) [29; 37)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"Variant2|Variant2",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
static INNER<|>: &str = "";
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2019-12-18 08:33:36 -06:00
|
|
|
"INNER STATIC_DEF FileId(1) [0; 24) [7; 12)",
|
|
|
|
"static INNER: &str = \"\";|INNER",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
const INNER<|>: &str = "";
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
2019-12-18 08:33:36 -06:00
|
|
|
"INNER CONST_DEF FileId(1) [0; 23) [6; 11)",
|
|
|
|
"const INNER: &str = \"\";|INNER",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
|
|
|
type Thing<|> = Option<()>;
|
|
|
|
"#,
|
2019-02-25 04:38:52 -06:00
|
|
|
"Thing TYPE_ALIAS_DEF FileId(1) [0; 24) [5; 10)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"type Thing = Option<()>;|Thing",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
trait Foo<|> { }
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
|
|
|
"Foo TRAIT_DEF FileId(1) [0; 13) [6; 9)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"trait Foo { }|Foo",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
r#"
|
|
|
|
//- /lib.rs
|
2019-12-18 08:33:36 -06:00
|
|
|
mod bar<|> { }
|
2019-02-23 03:02:42 -06:00
|
|
|
"#,
|
|
|
|
"bar MODULE FileId(1) [0; 11) [4; 7)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"mod bar { }|bar",
|
2019-02-23 03:02:42 -06:00
|
|
|
);
|
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
}
|
2019-12-06 14:24:41 -06:00
|
|
|
mod confuse_index { fn foo(); }
|
2019-11-16 07:49:26 -06:00
|
|
|
",
|
|
|
|
"foo FN_DEF FileId(1) [52; 63) [55; 58)",
|
2019-12-18 08:33:36 -06:00
|
|
|
"fn foo() {}|foo",
|
2019-11-16 07:49:26 -06:00
|
|
|
);
|
|
|
|
}
|
2019-12-06 12:30:15 -06:00
|
|
|
|
|
|
|
#[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;
|
2019-12-06 14:24:41 -06:00
|
|
|
fn foo() {} // for index confusion
|
2019-12-06 12:30:15 -06:00
|
|
|
}
|
|
|
|
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-18 08:33:36 -06:00
|
|
|
"fn foo() -> i8 {}|foo",
|
2019-12-06 12:30:15 -06:00
|
|
|
);
|
|
|
|
}
|
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-12-18 08:33:36 -06:00
|
|
|
"T",
|
2019-12-07 11:54:18 -06:00
|
|
|
);
|
|
|
|
}
|
2019-12-18 09:25:15 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_within_macro() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! id {
|
|
|
|
($($tt:tt)*) => ($($tt)*)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let x = 1;
|
|
|
|
id!({
|
|
|
|
let y = <|>x;
|
|
|
|
let z = y;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"x BIND_PAT FileId(1) [69; 70)",
|
|
|
|
"x",
|
|
|
|
);
|
|
|
|
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
macro_rules! id {
|
|
|
|
($($tt:tt)*) => ($($tt)*)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let x = 1;
|
|
|
|
id!({
|
|
|
|
let y = x;
|
|
|
|
let z = <|>y;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"y BIND_PAT FileId(1) [98; 99)",
|
|
|
|
"y",
|
|
|
|
);
|
|
|
|
}
|
2019-12-20 04:19:09 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_in_local_fn() {
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
fn main() {
|
|
|
|
fn foo() {
|
|
|
|
let x = 92;
|
|
|
|
<|>x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"x BIND_PAT FileId(1) [39; 40)",
|
|
|
|
"x",
|
|
|
|
);
|
|
|
|
}
|
2019-12-20 07:47:01 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn goto_def_for_field_init_shorthand() {
|
|
|
|
covers!(goto_def_for_field_init_shorthand);
|
|
|
|
check_goto(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo { x: i32 }
|
|
|
|
fn main() {
|
|
|
|
let x = 92;
|
|
|
|
Foo { x<|> };
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"x RECORD_FIELD_DEF FileId(1) [13; 19) [13; 14)",
|
|
|
|
"x: i32|x",
|
|
|
|
)
|
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|