rust-analyzer/crates/ra_ide/src/hover.rs

2398 lines
72 KiB
Rust
Raw Normal View History

use std::iter::once;
2020-03-05 23:02:14 +00:00
use hir::{
2020-06-11 11:41:42 +00:00
Adt, AsAssocItem, AssocItemContainer, Documentation, FieldSource, HasSource, HirDisplay,
Module, ModuleDef, ModuleSource, Semantics,
2020-03-05 23:02:14 +00:00
};
use itertools::Itertools;
2020-03-08 13:26:57 +00:00
use ra_db::SourceDatabase;
use ra_ide_db::{
2020-03-03 17:54:39 +00:00
defs::{classify_name, classify_name_ref, Definition},
RootDatabase,
};
use ra_syntax::{ast, match_ast, AstNode, SyntaxKind::*, SyntaxToken, TokenAtOffset};
2019-01-08 19:33:36 +00:00
2019-05-30 17:46:43 +00:00
use crate::{
2020-06-11 11:41:42 +00:00
display::{
macro_label, rust_code_markup, rust_code_markup_with_doc, ShortLabel, ToNav, TryToNav,
},
2020-06-06 11:30:29 +00:00
runnables::runnable,
FileId, FilePosition, NavigationTarget, RangeInfo, Runnable,
2019-05-30 17:46:43 +00:00
};
2020-06-08 10:56:31 +00:00
use test_utils::mark;
2019-01-08 19:33:36 +00:00
2020-06-03 11:15:54 +00:00
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct HoverConfig {
pub implementations: bool,
2020-06-06 11:30:29 +00:00
pub run: bool,
pub debug: bool,
pub goto_type_def: bool,
2020-06-03 11:15:54 +00:00
}
impl Default for HoverConfig {
fn default() -> Self {
Self { implementations: true, run: true, debug: true, goto_type_def: true }
2020-06-03 11:15:54 +00:00
}
}
impl HoverConfig {
pub const NO_ACTIONS: Self =
Self { implementations: false, run: false, debug: false, goto_type_def: false };
2020-06-03 11:15:54 +00:00
pub fn any(&self) -> bool {
self.implementations || self.runnable() || self.goto_type_def
2020-06-03 11:15:54 +00:00
}
pub fn none(&self) -> bool {
!self.any()
}
2020-06-06 11:30:29 +00:00
pub fn runnable(&self) -> bool {
self.run || self.debug
}
2020-06-03 11:15:54 +00:00
}
#[derive(Debug, Clone)]
pub enum HoverAction {
2020-06-06 11:30:29 +00:00
Runnable(Runnable),
2020-06-03 11:15:54 +00:00
Implementaion(FilePosition),
GoToType(Vec<HoverGotoTypeData>),
}
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct HoverGotoTypeData {
pub mod_path: String,
pub nav: NavigationTarget,
2020-06-03 11:15:54 +00:00
}
/// Contains the results when hovering over an item
#[derive(Debug, Default)]
pub struct HoverResult {
results: Vec<String>,
2020-06-03 11:15:54 +00:00
actions: Vec<HoverAction>,
2019-06-04 06:32:02 +00:00
}
impl HoverResult {
pub fn new() -> HoverResult {
Self::default()
}
pub fn is_empty(&self) -> bool {
self.results.is_empty()
}
pub fn len(&self) -> usize {
self.results.len()
}
2020-06-03 11:15:54 +00:00
pub fn actions(&self) -> &[HoverAction] {
&self.actions
}
/// Returns the results converted into markup
/// for displaying in a UI
2020-06-03 11:15:54 +00:00
///
/// Does not process actions!
pub fn to_markup(&self) -> String {
2020-06-03 11:15:54 +00:00
self.results.join("\n\n___\n")
}
2020-07-08 17:41:57 +00:00
fn push_action(&mut self, action: HoverAction) {
self.actions.push(action);
}
}
// Feature: Hover
//
// Shows additional information, like type of an expression or documentation for definition when "focusing" code.
// Focusing is usually hovering with a mouse, but can also be triggered with a shortcut.
pub(crate) fn hover(db: &RootDatabase, position: FilePosition) -> Option<RangeInfo<HoverResult>> {
let sema = Semantics::new(db);
let file = sema.parse(position.file_id).syntax().clone();
let token = pick_best(file.token_at_offset(position.offset))?;
let token = sema.descend_into_macros(token);
let mut res = HoverResult::new();
if let Some((node, name_kind)) = match_ast! {
match (token.parent()) {
ast::NameRef(name_ref) => {
classify_name_ref(&sema, &name_ref).map(|d| (name_ref.syntax().clone(), d.definition()))
},
ast::Name(name) => {
classify_name(&sema, &name).map(|d| (name.syntax().clone(), d.definition()))
},
_ => None,
}
} {
let range = sema.original_range(&node).range;
2020-07-08 17:58:50 +00:00
if let Some(text) = hover_text_from_name_kind(db, name_kind) {
res.results.push(text);
}
if !res.is_empty() {
2020-06-03 11:15:54 +00:00
if let Some(action) = show_implementations_action(db, name_kind) {
res.push_action(action);
}
2020-06-06 11:30:29 +00:00
if let Some(action) = runnable_action(&sema, name_kind, position.file_id) {
res.push_action(action);
}
if let Some(action) = goto_type_action(db, name_kind) {
res.push_action(action);
}
return Some(RangeInfo::new(range, res));
}
}
let node = token
.ancestors()
.find(|n| ast::Expr::cast(n.clone()).is_some() || ast::Pat::cast(n.clone()).is_some())?;
let ty = match_ast! {
match node {
ast::MacroCall(_it) => {
// If this node is a MACRO_CALL, it means that `descend_into_macros` failed to resolve.
// (e.g expanding a builtin macro). So we give up here.
return None;
},
ast::Expr(it) => {
sema.type_of_expr(&it)
},
ast::Pat(it) => {
sema.type_of_pat(&it)
},
_ => None,
}
}?;
2020-07-08 17:58:50 +00:00
res.results.push(rust_code_markup(&ty.display(db)));
let range = sema.original_range(&node).range;
Some(RangeInfo::new(range, res))
}
2020-06-03 11:15:54 +00:00
fn show_implementations_action(db: &RootDatabase, def: Definition) -> Option<HoverAction> {
fn to_action(nav_target: NavigationTarget) -> HoverAction {
HoverAction::Implementaion(FilePosition {
file_id: nav_target.file_id(),
offset: nav_target.range().start(),
})
}
match def {
Definition::ModuleDef(it) => match it {
ModuleDef::Adt(Adt::Struct(it)) => Some(to_action(it.to_nav(db))),
ModuleDef::Adt(Adt::Union(it)) => Some(to_action(it.to_nav(db))),
ModuleDef::Adt(Adt::Enum(it)) => Some(to_action(it.to_nav(db))),
ModuleDef::Trait(it) => Some(to_action(it.to_nav(db))),
_ => None,
},
_ => None,
}
}
2020-06-06 11:30:29 +00:00
fn runnable_action(
sema: &Semantics<RootDatabase>,
def: Definition,
file_id: FileId,
) -> Option<HoverAction> {
match def {
Definition::ModuleDef(it) => match it {
ModuleDef::Module(it) => match it.definition_source(sema.db).value {
ModuleSource::Module(it) => runnable(&sema, it.syntax().clone(), file_id)
.map(|it| HoverAction::Runnable(it)),
_ => None,
},
ModuleDef::Function(it) => {
let src = it.source(sema.db);
if src.file_id != file_id.into() {
2020-06-08 10:56:31 +00:00
mark::hit!(hover_macro_generated_struct_fn_doc_comment);
mark::hit!(hover_macro_generated_struct_fn_doc_attr);
return None;
}
runnable(&sema, src.value.syntax().clone(), file_id)
2020-06-06 11:30:29 +00:00
.map(|it| HoverAction::Runnable(it))
}
_ => None,
},
_ => None,
}
}
fn goto_type_action(db: &RootDatabase, def: Definition) -> Option<HoverAction> {
match def {
Definition::Local(it) => {
2020-06-11 17:17:32 +00:00
let mut targets: Vec<ModuleDef> = Vec::new();
let mut push_new_def = |item: ModuleDef| {
if !targets.contains(&item) {
targets.push(item);
}
};
it.ty(db).walk(db, |t| {
if let Some(adt) = t.as_adt() {
push_new_def(adt.into());
} else if let Some(trait_) = t.as_dyn_trait() {
push_new_def(trait_.into());
2020-06-11 20:06:58 +00:00
} else if let Some(traits) = t.as_impl_traits(db) {
traits.into_iter().for_each(|it| push_new_def(it.into()));
2020-06-11 17:17:32 +00:00
} else if let Some(trait_) = t.as_associated_type_parent_trait(db) {
push_new_def(trait_.into());
}
});
let targets = targets
2020-06-10 19:56:49 +00:00
.into_iter()
2020-06-11 11:41:42 +00:00
.filter_map(|it| {
Some(HoverGotoTypeData {
mod_path: mod_path(db, &it)?,
nav: it.try_to_nav(db)?,
})
})
2020-06-11 17:17:32 +00:00
.collect();
Some(HoverAction::GoToType(targets))
}
_ => None,
}
}
2020-03-05 23:02:14 +00:00
fn hover_text(
docs: Option<String>,
desc: Option<String>,
mod_path: Option<String>,
) -> Option<String> {
if let Some(desc) = desc {
Some(rust_code_markup_with_doc(&desc, docs.as_deref(), mod_path.as_deref()))
} else {
docs
2019-06-10 16:34:43 +00:00
}
}
2020-03-05 23:02:14 +00:00
fn definition_owner_name(db: &RootDatabase, def: &Definition) -> Option<String> {
match def {
2020-04-25 12:23:34 +00:00
Definition::Field(f) => Some(f.parent_def(db).name(db)),
2020-03-05 23:02:14 +00:00
Definition::Local(l) => l.parent(db).name(db),
Definition::ModuleDef(md) => match md {
ModuleDef::Function(f) => match f.as_assoc_item(db)?.container(db) {
AssocItemContainer::Trait(t) => Some(t.name(db)),
AssocItemContainer::ImplDef(i) => i.target_ty(db).as_adt().map(|adt| adt.name(db)),
},
ModuleDef::EnumVariant(e) => Some(e.parent_enum(db).name(db)),
_ => None,
},
Definition::SelfType(i) => i.target_ty(db).as_adt().map(|adt| adt.name(db)),
_ => None,
}
.map(|name| name.to_string())
}
fn determine_mod_path(db: &RootDatabase, module: Module, name: Option<String>) -> String {
once(db.crate_graph()[module.krate().into()].display_name.as_ref().map(ToString::to_string))
.chain(
module
.path_to_root(db)
.into_iter()
.rev()
.map(|it| it.name(db).map(|name| name.to_string())),
)
.chain(once(name))
.flatten()
.join("::")
}
2020-06-11 11:41:42 +00:00
// returns None only for ModuleDef::BuiltinType
fn mod_path(db: &RootDatabase, item: &ModuleDef) -> Option<String> {
Some(determine_mod_path(db, item.module(db)?, item.name(db).map(|name| name.to_string())))
}
fn definition_mod_path(db: &RootDatabase, def: &Definition) -> Option<String> {
def.module(db).map(|module| determine_mod_path(db, module, definition_owner_name(db, def)))
2020-03-05 23:02:14 +00:00
}
2020-03-03 17:36:39 +00:00
fn hover_text_from_name_kind(db: &RootDatabase, def: Definition) -> Option<String> {
let mod_path = definition_mod_path(db, &def);
2020-02-19 13:56:22 +00:00
return match def {
2020-03-03 17:36:39 +00:00
Definition::Macro(it) => {
let src = it.source(db);
let docs = Documentation::from_ast(&src.value).map(Into::into);
hover_text(docs, Some(macro_label(&src.value)), mod_path)
}
2020-04-25 12:23:34 +00:00
Definition::Field(it) => {
let src = it.source(db);
2019-11-20 06:40:36 +00:00
match src.value {
2020-03-08 13:26:57 +00:00
FieldSource::Named(it) => {
let docs = Documentation::from_ast(&it).map(Into::into);
hover_text(docs, it.short_label(), mod_path)
2020-03-05 23:02:14 +00:00
}
_ => None,
}
}
2020-03-03 17:36:39 +00:00
Definition::ModuleDef(it) => match it {
2020-03-05 23:02:14 +00:00
ModuleDef::Module(it) => match it.definition_source(db).value {
ModuleSource::Module(it) => {
let docs = Documentation::from_ast(&it).map(Into::into);
hover_text(docs, it.short_label(), mod_path)
}
_ => None,
},
2020-03-05 23:02:14 +00:00
ModuleDef::Function(it) => from_def_source(db, it, mod_path),
ModuleDef::Adt(Adt::Struct(it)) => from_def_source(db, it, mod_path),
ModuleDef::Adt(Adt::Union(it)) => from_def_source(db, it, mod_path),
ModuleDef::Adt(Adt::Enum(it)) => from_def_source(db, it, mod_path),
ModuleDef::EnumVariant(it) => from_def_source(db, it, mod_path),
ModuleDef::Const(it) => from_def_source(db, it, mod_path),
ModuleDef::Static(it) => from_def_source(db, it, mod_path),
ModuleDef::Trait(it) => from_def_source(db, it, mod_path),
ModuleDef::TypeAlias(it) => from_def_source(db, it, mod_path),
ModuleDef::BuiltinType(it) => Some(it.to_string()),
},
Definition::Local(it) => Some(rust_code_markup(&it.ty(db).display(db))),
2020-03-03 17:36:39 +00:00
Definition::TypeParam(_) | Definition::SelfType(_) => {
// FIXME: Hover for generic param
None
}
};
2020-03-05 23:02:14 +00:00
fn from_def_source<A, D>(db: &RootDatabase, def: D, mod_path: Option<String>) -> Option<String>
where
D: HasSource<Ast = A>,
A: ast::DocCommentsOwner + ast::NameOwner + ShortLabel + ast::AttrsOwner,
{
let src = def.source(db);
let docs = Documentation::from_ast(&src.value).map(Into::into);
hover_text(docs, src.value.short_label(), mod_path)
}
}
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 => 3,
L_PAREN | R_PAREN => 2,
kind if kind.is_trivia() => 0,
_ => 1,
}
}
}
2019-01-08 19:33:36 +00:00
#[cfg(test)]
mod tests {
2020-06-03 11:15:54 +00:00
use super::*;
2020-06-06 11:30:29 +00:00
use insta::assert_debug_snapshot;
2020-06-03 11:15:54 +00:00
use ra_db::FileLoader;
use ra_syntax::TextRange;
2020-06-24 09:31:30 +00:00
use crate::mock_analysis::analysis_and_position;
fn trim_markup(s: &str) -> &str {
s.trim_start_matches("```rust\n").trim_end_matches("\n```")
}
2020-06-03 11:15:54 +00:00
fn assert_impl_action(action: &HoverAction, position: u32) {
let offset = match action {
2020-06-03 11:44:40 +00:00
HoverAction::Implementaion(pos) => pos.offset,
2020-06-06 11:30:29 +00:00
it => panic!("Unexpected hover action: {:#?}", it),
2020-06-03 11:15:54 +00:00
};
assert_eq!(offset, position.into());
}
2020-07-01 15:08:45 +00:00
fn check_hover_result(ra_fixture: &str, expected: &[&str]) -> (String, Vec<HoverAction>) {
let (analysis, position) = analysis_and_position(ra_fixture);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
let mut results = hover.info.results.clone();
2019-05-30 17:46:43 +00:00
results.sort();
for (markup, expected) in
2019-05-30 17:46:43 +00:00
results.iter().zip(expected.iter().chain(std::iter::repeat(&"<missing>")))
{
assert_eq!(trim_markup(&markup), *expected);
}
assert_eq!(hover.info.len(), expected.len());
let content = analysis.db.file_text(position.file_id);
2020-06-03 11:15:54 +00:00
(content[hover.range].to_string(), hover.info.actions().to_vec())
}
2019-01-08 19:33:36 +00:00
2020-07-01 15:08:45 +00:00
fn check_hover_no_result(ra_fixture: &str) {
let (analysis, position) = analysis_and_position(ra_fixture);
2020-02-26 16:12:26 +00:00
assert!(analysis.hover(position).unwrap().is_none());
}
2019-01-08 19:33:36 +00:00
#[test]
fn hover_shows_type_of_an_expression() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2020-06-24 09:29:43 +00:00
r#"
pub fn foo() -> u32 { 1 }
2019-01-08 19:33:36 +00:00
2020-06-24 09:29:43 +00:00
fn main() {
let foo_test = foo()<|>;
}
"#,
2019-01-08 19:33:36 +00:00
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-06-24 09:29:43 +00:00
assert_eq!(hover.range, TextRange::new(58.into(), 63.into()));
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("u32"));
}
#[test]
fn hover_shows_long_type_of_an_expression() {
check_hover_result(
r#"
//- /main.rs
struct Scan<A, B, C> {
a: A,
b: B,
c: C,
}
struct FakeIter<I> {
inner: I,
}
struct OtherStruct<T> {
i: T,
}
enum FakeOption<T> {
Some(T),
None,
}
fn scan<A, B, C>(a: A, b: B, c: C) -> FakeIter<Scan<OtherStruct<A>, B, C>> {
FakeIter { inner: Scan { a, b, c } }
}
fn main() {
let num: i32 = 55;
let closure = |memo: &mut u32, value: &u32, _another: &mut u32| -> FakeOption<u32> {
FakeOption::Some(*memo + value)
};
let number = 5u32;
let mut iter<|> = scan(OtherStruct { i: num }, closure, number);
}
"#,
&["FakeIter<Scan<OtherStruct<OtherStruct<i32>>, |&mut u32, &u32, &mut u32| -> FakeOption<u32>, u32>>"],
);
}
#[test]
fn hover_shows_fn_signature() {
// Single file with result
check_hover_result(
r#"
//- /main.rs
pub fn foo() -> u32 { 1 }
fn main() {
let foo_test = fo<|>o();
}
"#,
&["pub fn foo() -> u32"],
);
// Multiple candidates but results are ambiguous.
check_hover_result(
r#"
//- /a.rs
pub fn foo() -> u32 { 1 }
//- /b.rs
pub fn foo() -> &str { "" }
//- /c.rs
pub fn foo(a: u32, b: u32) {}
//- /main.rs
mod a;
mod b;
mod c;
fn main() {
let foo_test = fo<|>o();
}
"#,
&["{unknown}"],
);
}
#[test]
fn hover_shows_fn_signature_with_type_params() {
check_hover_result(
r#"
//- /main.rs
pub fn foo<'a, T: AsRef<str>>(b: &'a T) -> &'a str { }
fn main() {
let foo_test = fo<|>o();
}
"#,
&["pub fn foo<'a, T: AsRef<str>>(b: &'a T) -> &'a str"],
);
2019-01-08 19:33:36 +00:00
}
#[test]
fn hover_shows_fn_signature_on_fn_name() {
check_hover_result(
r#"
//- /main.rs
pub fn foo<|>(a: u32, b: u32) -> u32 {}
fn main() {
}
"#,
&["pub fn foo(a: u32, b: u32) -> u32"],
);
}
#[test]
fn hover_shows_struct_field_info() {
// Hovering over the field when instantiating
check_hover_result(
r#"
//- /main.rs
struct Foo {
field_a: u32,
}
fn main() {
let foo = Foo {
field_a<|>: 0,
};
}
"#,
&["Foo\n```\n\n```rust\nfield_a: u32"],
);
// Hovering over the field in the definition
check_hover_result(
r#"
//- /main.rs
struct Foo {
field_a<|>: u32,
}
fn main() {
let foo = Foo {
field_a: 0,
};
}
"#,
&["Foo\n```\n\n```rust\nfield_a: u32"],
);
}
#[test]
fn hover_const_static() {
check_hover_result(
r#"
//- /main.rs
const foo<|>: u32 = 0;
"#,
&["const foo: u32"],
);
check_hover_result(
r#"
//- /main.rs
static foo<|>: u32 = 0;
"#,
&["static foo: u32"],
);
}
#[test]
fn hover_default_generic_types() {
check_hover_result(
r#"
//- /main.rs
struct Test<K, T = u8> {
k: K,
t: T,
}
fn main() {
let zz<|> = Test { t: 23u8, k: 33 };
}"#,
&["Test<i32, u8>"],
);
}
#[test]
fn hover_some() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
enum Option<T> { Some(T) }
use Option::Some;
fn main() {
So<|>me(12);
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("Option\n```\n\n```rust\nSome"));
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
enum Option<T> { Some(T) }
use Option::Some;
fn main() {
let b<|>ar = Some(12);
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("Option<i32>"));
}
#[test]
fn hover_enum_variant() {
check_hover_result(
r#"
//- /main.rs
enum Option<T> {
/// The None variant
Non<|>e
}
"#,
&["
2020-03-05 23:02:14 +00:00
Option
```
```rust
None
```
___
The None variant
"
.trim()],
);
check_hover_result(
r#"
//- /main.rs
enum Option<T> {
/// The Some variant
Some(T)
}
fn main() {
let s = Option::Som<|>e(12);
}
"#,
&["
2020-03-05 23:02:14 +00:00
Option
```
```rust
Some
```
___
The Some variant
"
.trim()],
);
}
2019-01-08 19:33:36 +00:00
#[test]
fn hover_for_local_variable() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position("fn func(foo: i32) { fo<|>o; }");
2019-01-08 19:33:36 +00:00
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
2019-01-08 19:33:36 +00:00
}
#[test]
fn hover_for_local_variable_pat() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position("fn func(fo<|>o: i32) {}");
2019-01-08 19:33:36 +00:00
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
2019-01-08 19:33:36 +00:00
}
#[test]
fn hover_local_var_edge() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
fn func(foo: i32) { if true { <|>foo; }; }
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
}
2019-12-13 18:54:07 +00:00
#[test]
fn hover_for_param_edge() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position("fn func(<|>foo: i32) {}");
2019-12-13 18:54:07 +00:00
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
2019-12-13 18:54:07 +00:00
}
#[test]
fn test_hover_infer_associated_method_result() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
struct Thing { x: u32 }
impl Thing {
fn new() -> Thing {
Thing { x: 0 }
}
}
fn main() {
let foo_<|>test = Thing::new();
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("Thing"));
}
#[test]
fn test_hover_infer_associated_method_exact() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
2020-03-08 13:26:57 +00:00
mod wrapper {
struct Thing { x: u32 }
2020-03-08 13:26:57 +00:00
impl Thing {
fn new() -> Thing {
Thing { x: 0 }
}
}
}
fn main() {
2020-03-08 13:26:57 +00:00
let foo_test = wrapper::Thing::new<|>();
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
assert_eq!(
2020-07-08 17:54:50 +00:00
trim_markup(&hover.info.results[0]),
("wrapper::Thing\n```\n\n```rust\nfn new() -> Thing")
);
}
2019-03-06 16:39:11 +00:00
#[test]
fn test_hover_infer_associated_const_in_pattern() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-03-06 16:39:11 +00:00
"
struct X;
impl X {
const C: u32 = 1;
}
fn main() {
match 1 {
X::C<|> => {},
2 => {},
_ => {}
};
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("const C: u32"));
2019-03-06 16:39:11 +00:00
}
#[test]
fn test_hover_self() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
"
struct Thing { x: u32 }
impl Thing {
fn new() -> Self {
Self<|> { x: 0 }
}
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("Thing"));
2019-11-26 18:18:26 +00:00
/* FIXME: revive these tests
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-11-26 18:18:26 +00:00
"
struct Thing { x: u32 }
impl Thing {
fn new() -> Self<|> {
Self { x: 0 }
}
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("Thing"));
2019-11-26 18:18:26 +00:00
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-11-26 18:18:26 +00:00
"
enum Thing { A }
impl Thing {
pub fn new() -> Self<|> {
Thing::A
}
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("enum Thing"));
2019-11-26 18:18:26 +00:00
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-11-26 18:18:26 +00:00
"
enum Thing { A }
impl Thing {
pub fn thing(a: Self<|>) {
}
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("enum Thing"));
2019-11-26 18:18:26 +00:00
*/
}
2019-06-11 14:32:33 +00:00
#[test]
fn test_hover_shadowing_pat() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-06-11 14:32:33 +00:00
"
fn x() {}
fn y() {
let x = 0i32;
x<|>;
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
2019-06-11 14:32:33 +00:00
}
2019-09-10 05:33:02 +00:00
#[test]
fn test_hover_macro_invocation() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-09-10 05:33:02 +00:00
"
macro_rules! foo {
() => {}
}
fn f() {
fo<|>o!();
}
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), ("macro_rules! foo"));
2019-09-10 05:33:02 +00:00
}
2019-11-10 18:59:39 +00:00
#[test]
fn test_hover_tuple_field() {
2020-06-24 09:31:30 +00:00
let (analysis, position) = analysis_and_position(
2019-11-10 18:59:39 +00:00
"
struct TS(String, i32<|>);
",
);
let hover = analysis.hover(position).unwrap().unwrap();
2020-07-08 17:54:50 +00:00
assert_eq!(trim_markup(&hover.info.results[0]), "i32");
2019-11-10 18:59:39 +00:00
}
2019-11-18 16:58:42 +00:00
#[test]
fn test_hover_through_macro() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2019-11-18 19:02:02 +00:00
//- /lib.rs
2019-11-18 16:58:42 +00:00
macro_rules! id {
2019-11-18 19:02:02 +00:00
($($tt:tt)*) => { $($tt)* }
2019-11-18 16:58:42 +00:00
}
fn foo() {}
id! {
fn bar() {
2019-11-18 19:02:02 +00:00
fo<|>o();
2019-11-18 16:58:42 +00:00
}
}
",
2019-11-18 19:02:02 +00:00
&["fn foo()"],
2019-11-18 16:58:42 +00:00
);
assert_eq!(hover_on, "foo")
2019-11-18 16:58:42 +00:00
}
2020-01-10 17:51:08 +00:00
#[test]
fn test_hover_through_expr_in_macro() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-01-10 17:51:08 +00:00
//- /lib.rs
macro_rules! id {
($($tt:tt)*) => { $($tt)* }
}
fn foo(bar:u32) {
let a = id!(ba<|>r);
2020-01-14 16:39:28 +00:00
}
2020-01-10 17:51:08 +00:00
",
&["u32"],
);
assert_eq!(hover_on, "bar")
2020-01-10 17:51:08 +00:00
}
#[test]
fn test_hover_through_expr_in_macro_recursive() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
macro_rules! id_deep {
($($tt:tt)*) => { $($tt)* }
}
macro_rules! id {
($($tt:tt)*) => { id_deep!($($tt)*) }
}
fn foo(bar:u32) {
let a = id!(ba<|>r);
}
",
&["u32"],
);
assert_eq!(hover_on, "bar")
}
2020-02-28 14:53:59 +00:00
#[test]
fn test_hover_through_func_in_macro_recursive() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-02-28 14:53:59 +00:00
//- /lib.rs
macro_rules! id_deep {
($($tt:tt)*) => { $($tt)* }
}
macro_rules! id {
($($tt:tt)*) => { id_deep!($($tt)*) }
}
fn bar() -> u32 {
0
}
fn foo() {
let a = id!([0u32, bar(<|>)] );
}
",
&["u32"],
);
assert_eq!(hover_on, "bar()")
}
2020-02-26 16:12:26 +00:00
#[test]
fn test_hover_through_literal_string_in_macro() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-02-26 16:12:26 +00:00
r#"
//- /lib.rs
macro_rules! arr {
($($tt:tt)*) => { [$($tt)*)] }
}
fn foo() {
let mastered_for_itunes = "";
let _ = arr!("Tr<|>acks", &mastered_for_itunes);
}
"#,
2020-02-28 03:37:22 +00:00
&["&str"],
2020-02-26 16:12:26 +00:00
);
2020-02-28 03:37:22 +00:00
assert_eq!(hover_on, "\"Tracks\"");
2020-02-26 16:12:26 +00:00
}
2020-03-11 15:14:15 +00:00
#[test]
fn test_hover_through_assert_macro() {
2020-06-03 11:15:54 +00:00
let (hover_on, _) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-03-11 15:14:15 +00:00
//- /lib.rs
#[rustc_builtin_macro]
macro_rules! assert {}
fn bar() -> bool { true }
fn foo() {
assert!(ba<|>r());
}
2020-07-01 15:08:45 +00:00
",
2020-03-11 15:14:15 +00:00
&["fn bar() -> bool"],
);
assert_eq!(hover_on, "bar");
}
2020-02-27 15:03:18 +00:00
#[test]
fn test_hover_through_literal_string_in_builtin_macro() {
check_hover_no_result(
r#"
//- /lib.rs
2020-02-27 15:03:18 +00:00
#[rustc_builtin_macro]
2020-03-11 15:08:12 +00:00
macro_rules! format {}
2020-02-27 15:03:18 +00:00
fn foo() {
2020-03-11 15:08:12 +00:00
format!("hel<|>lo {}", 0);
2020-02-27 15:03:18 +00:00
}
"#,
);
}
#[test]
fn test_hover_non_ascii_space_doc() {
check_hover_result(
"
//- /lib.rs
/// <- `\u{3000}` here
fn foo() {
}
fn bar() {
fo<|>o();
}
",
&["fn foo()\n```\n___\n\n<- `\u{3000}` here"],
);
}
#[test]
fn test_hover_function_show_qualifiers() {
check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
async fn foo<|>() {}
",
&["async fn foo()"],
);
check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
pub const unsafe fn foo<|>() {}
",
&["pub const unsafe fn foo()"],
);
check_hover_result(
r#"
//- /lib.rs
pub(crate) async unsafe extern "C" fn foo<|>() {}
"#,
&[r#"pub(crate) async unsafe extern "C" fn foo()"#],
);
}
2020-05-01 15:49:51 +00:00
#[test]
fn test_hover_trait_show_qualifiers() {
2020-06-03 11:15:54 +00:00
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-05-01 15:49:51 +00:00
//- /lib.rs
unsafe trait foo<|>() {}
",
&["unsafe trait foo"],
);
2020-06-03 11:15:54 +00:00
assert_impl_action(&actions[0], 13);
2020-05-01 15:49:51 +00:00
}
#[test]
fn test_hover_mod_with_same_name_as_function() {
check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
use self::m<|>y::Bar;
mod my {
pub struct Bar;
}
fn my() {}
",
&["mod my"],
);
}
#[test]
fn test_hover_struct_doc_comment() {
check_hover_result(
r#"
//- /lib.rs
/// bar docs
struct Bar;
fn foo() {
let bar = Ba<|>r;
}
"#,
&["struct Bar\n```\n___\n\nbar docs"],
);
}
#[test]
fn test_hover_struct_doc_attr() {
check_hover_result(
r#"
//- /lib.rs
#[doc = "bar docs"]
struct Bar;
fn foo() {
let bar = Ba<|>r;
}
"#,
&["struct Bar\n```\n___\n\nbar docs"],
);
}
#[test]
fn test_hover_struct_doc_attr_multiple_and_mixed() {
check_hover_result(
r#"
//- /lib.rs
/// bar docs 0
#[doc = "bar docs 1"]
#[doc = "bar docs 2"]
struct Bar;
fn foo() {
let bar = Ba<|>r;
}
"#,
&["struct Bar\n```\n___\n\nbar docs 0\n\nbar docs 1\n\nbar docs 2"],
);
}
#[test]
fn test_hover_macro_generated_struct_fn_doc_comment() {
2020-06-08 10:56:31 +00:00
mark::check!(hover_macro_generated_struct_fn_doc_comment);
check_hover_result(
r#"
//- /lib.rs
macro_rules! bar {
() => {
struct Bar;
impl Bar {
/// Do the foo
fn foo(&self) {}
}
}
}
bar!();
fn foo() {
let bar = Bar;
bar.fo<|>o();
}
"#,
&["Bar\n```\n\n```rust\nfn foo(&self)\n```\n___\n\n Do the foo"],
);
}
#[test]
fn test_hover_macro_generated_struct_fn_doc_attr() {
2020-06-08 10:56:31 +00:00
mark::check!(hover_macro_generated_struct_fn_doc_attr);
check_hover_result(
r#"
//- /lib.rs
macro_rules! bar {
() => {
struct Bar;
impl Bar {
#[doc = "Do the foo"]
fn foo(&self) {}
}
}
}
bar!();
fn foo() {
let bar = Bar;
bar.fo<|>o();
}
"#,
&["Bar\n```\n\n```rust\nfn foo(&self)\n```\n___\n\nDo the foo"],
);
}
2020-06-03 11:15:54 +00:00
#[test]
2020-06-03 12:13:26 +00:00
fn test_hover_trait_has_impl_action() {
2020-06-03 11:15:54 +00:00
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-03 11:15:54 +00:00
//- /lib.rs
trait foo<|>() {}
",
&["trait foo"],
);
assert_impl_action(&actions[0], 6);
}
#[test]
2020-06-03 12:13:26 +00:00
fn test_hover_struct_has_impl_action() {
2020-06-03 11:15:54 +00:00
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-03 11:15:54 +00:00
//- /lib.rs
struct foo<|>() {}
",
&["struct foo"],
);
assert_impl_action(&actions[0], 7);
}
#[test]
2020-06-03 12:13:26 +00:00
fn test_hover_union_has_impl_action() {
2020-06-03 11:15:54 +00:00
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-03 11:15:54 +00:00
//- /lib.rs
union foo<|>() {}
",
&["union foo"],
);
assert_impl_action(&actions[0], 6);
}
2020-06-03 12:29:03 +00:00
#[test]
fn test_hover_enum_has_impl_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-03 12:29:03 +00:00
//- /lib.rs
enum foo<|>() {
A,
B
}
",
&["enum foo"],
);
assert_impl_action(&actions[0], 5);
}
2020-06-06 11:30:29 +00:00
#[test]
fn test_hover_test_has_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-06 11:30:29 +00:00
//- /lib.rs
#[test]
fn foo_<|>test() {}
",
&["fn foo_test()"],
);
assert_debug_snapshot!(actions,
@r###"
[
Runnable(
Runnable {
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..24,
name: "foo_test",
kind: FN_DEF,
focus_range: Some(
11..19,
),
container_name: None,
description: None,
docs: None,
},
kind: Test {
test_id: Path(
"foo_test",
),
attr: TestAttr {
ignore: false,
},
},
cfg_exprs: [],
},
),
]
"###);
}
#[test]
fn test_hover_test_mod_has_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-06 11:30:29 +00:00
//- /lib.rs
mod tests<|> {
#[test]
fn foo_test() {}
}
",
&["mod tests"],
);
assert_debug_snapshot!(actions,
@r###"
[
Runnable(
Runnable {
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..46,
name: "tests",
kind: MODULE,
focus_range: Some(
4..9,
),
container_name: None,
description: None,
docs: None,
},
kind: TestMod {
path: "tests",
},
cfg_exprs: [],
},
),
]
"###);
}
#[test]
fn test_hover_struct_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
struct S{ f1: u32 }
fn main() {
let s<|>t = S{ f1:0 };
}
",
&["S"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..19,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
7..8,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_generic_struct_has_goto_type_actions() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
struct Arg(u32);
struct S<T>{ f1: T }
fn main() {
let s<|>t = S{ f1:Arg(0) };
}
",
&["S<Arg>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 17..37,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
24..25,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Arg",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..16,
name: "Arg",
kind: STRUCT_DEF,
focus_range: Some(
7..10,
),
container_name: None,
description: Some(
"struct Arg",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_generic_struct_has_flattened_goto_type_actions() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
struct Arg(u32);
struct S<T>{ f1: T }
fn main() {
let s<|>t = S{ f1: S{ f1: Arg(0) } };
}
",
&["S<S<Arg>>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 17..37,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
24..25,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Arg",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..16,
name: "Arg",
kind: STRUCT_DEF,
focus_range: Some(
7..10,
),
container_name: None,
description: Some(
"struct Arg",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_tuple_has_goto_type_actions() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
struct A(u32);
struct B(u32);
mod M {
pub struct C(u32);
}
fn main() {
let s<|>t = (A(1), B(2), M::C(3) );
}
",
&["(A, B, C)"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "A",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..14,
name: "A",
kind: STRUCT_DEF,
focus_range: Some(
7..8,
),
container_name: None,
description: Some(
"struct A",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "B",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 15..29,
name: "B",
kind: STRUCT_DEF,
focus_range: Some(
22..23,
),
container_name: None,
description: Some(
"struct B",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "M::C",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 42..60,
name: "C",
kind: STRUCT_DEF,
focus_range: Some(
53..54,
),
container_name: None,
description: Some(
"pub struct C",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_return_impl_trait_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
trait Foo {}
fn foo() -> impl Foo {}
fn main() {
let s<|>t = foo();
}
",
&["impl Foo"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_generic_return_impl_trait_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
trait Foo<T> {}
struct S;
fn foo() -> impl Foo<S> {}
fn main() {
let s<|>t = foo();
}
",
&["impl Foo<S>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..15,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 16..25,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
23..24,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
2020-06-11 20:06:58 +00:00
#[test]
fn test_hover_return_impl_traits_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-11 20:06:58 +00:00
//- /main.rs
trait Foo {}
trait Bar {}
fn foo() -> impl Foo + Bar {}
fn main() {
let s<|>t = foo();
}
",
&["impl Foo + Bar"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Bar",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 13..25,
name: "Bar",
kind: TRAIT_DEF,
focus_range: Some(
19..22,
),
container_name: None,
description: Some(
"trait Bar",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_generic_return_impl_traits_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-11 20:06:58 +00:00
//- /main.rs
trait Foo<T> {}
trait Bar<T> {}
struct S1 {}
struct S2 {}
fn foo() -> impl Foo<S1> + Bar<S2> {}
fn main() {
let s<|>t = foo();
}
",
&["impl Foo<S1> + Bar<S2>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..15,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Bar",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 16..31,
name: "Bar",
kind: TRAIT_DEF,
focus_range: Some(
22..25,
),
container_name: None,
description: Some(
"trait Bar",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S1",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 32..44,
name: "S1",
kind: STRUCT_DEF,
focus_range: Some(
39..41,
),
container_name: None,
description: Some(
"struct S1",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S2",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 45..57,
name: "S2",
kind: STRUCT_DEF,
focus_range: Some(
52..54,
),
container_name: None,
description: Some(
"struct S2",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_arg_impl_trait_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
trait Foo {}
fn foo(ar<|>g: &impl Foo) {}
",
&["&impl Foo"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
],
),
]
"###);
}
2020-06-11 20:06:58 +00:00
#[test]
fn test_hover_arg_impl_traits_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-11 20:06:58 +00:00
//- /lib.rs
trait Foo {}
trait Bar<T> {}
struct S{}
fn foo(ar<|>g: &impl Foo + Bar<S>) {}
",
&["&impl Foo + Bar<S>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Bar",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 13..28,
name: "Bar",
kind: TRAIT_DEF,
focus_range: Some(
19..22,
),
container_name: None,
description: Some(
"trait Bar",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 29..39,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
36..37,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_arg_generic_impl_trait_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
trait Foo<T> {}
struct S {}
fn foo(ar<|>g: &impl Foo<S>) {}
",
&["&impl Foo<S>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..15,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 16..27,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
23..24,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_dyn_return_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /main.rs
trait Foo {}
struct S;
impl Foo for S {}
struct B<T>{}
fn foo() -> B<dyn Foo> {}
fn main() {
let s<|>t = foo();
}
",
&["B<dyn Foo>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "B",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 42..55,
name: "B",
kind: STRUCT_DEF,
focus_range: Some(
49..50,
),
container_name: None,
description: Some(
"struct B",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_dyn_arg_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
trait Foo {}
fn foo(ar<|>g: &dyn Foo) {}
",
&["&dyn Foo"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..12,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
fn test_hover_generic_dyn_arg_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
trait Foo<T> {}
struct S {}
fn foo(ar<|>g: &dyn Foo<S>) {}
",
&["&dyn Foo<S>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..15,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 16..27,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
23..24,
),
container_name: None,
description: Some(
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
#[test]
2020-06-10 19:56:49 +00:00
fn test_hover_goto_type_action_links_order() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
//- /lib.rs
trait ImplTrait<T> {}
trait DynTrait<T> {}
struct B<T> {}
struct S {}
2020-06-10 19:56:49 +00:00
fn foo(a<|>rg: &impl ImplTrait<B<dyn DynTrait<B<S>>>>) {}
",
2020-06-10 19:56:49 +00:00
&["&impl ImplTrait<B<dyn DynTrait<B<S>>>>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "ImplTrait",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..21,
name: "ImplTrait",
kind: TRAIT_DEF,
focus_range: Some(
6..15,
),
container_name: None,
description: Some(
"trait ImplTrait",
),
docs: None,
},
},
HoverGotoTypeData {
2020-06-10 19:56:49 +00:00
mod_path: "B",
nav: NavigationTarget {
file_id: FileId(
1,
),
2020-06-10 19:56:49 +00:00
full_range: 43..57,
name: "B",
kind: STRUCT_DEF,
focus_range: Some(
2020-06-10 19:56:49 +00:00
50..51,
),
container_name: None,
description: Some(
2020-06-10 19:56:49 +00:00
"struct B",
),
docs: None,
},
},
HoverGotoTypeData {
mod_path: "DynTrait",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 22..42,
name: "DynTrait",
kind: TRAIT_DEF,
focus_range: Some(
28..36,
),
container_name: None,
description: Some(
"trait DynTrait",
),
docs: None,
},
},
HoverGotoTypeData {
2020-06-10 19:56:49 +00:00
mod_path: "S",
nav: NavigationTarget {
file_id: FileId(
1,
),
2020-06-10 19:56:49 +00:00
full_range: 58..69,
name: "S",
kind: STRUCT_DEF,
focus_range: Some(
2020-06-10 19:56:49 +00:00
65..66,
),
container_name: None,
description: Some(
2020-06-10 19:56:49 +00:00
"struct S",
),
docs: None,
},
},
],
),
]
"###);
}
2020-06-10 19:58:25 +00:00
#[test]
fn test_hover_associated_type_has_goto_type_action() {
let (_, actions) = check_hover_result(
2020-07-01 15:08:45 +00:00
r"
2020-06-10 19:58:25 +00:00
//- /main.rs
trait Foo {
type Item;
fn get(self) -> Self::Item {}
}
struct Bar{}
struct S{}
impl Foo for S{
type Item = Bar;
}
fn test() -> impl Foo {
S{}
}
fn main() {
let s<|>t = test().get();
}
",
&["Foo::Item<impl Foo>"],
);
assert_debug_snapshot!(actions,
@r###"
[
GoToType(
[
HoverGotoTypeData {
mod_path: "Foo",
nav: NavigationTarget {
file_id: FileId(
1,
),
full_range: 0..62,
name: "Foo",
kind: TRAIT_DEF,
focus_range: Some(
6..9,
),
container_name: None,
description: Some(
"trait Foo",
),
docs: None,
},
},
],
),
]
"###);
}
2019-01-08 19:33:36 +00:00
}