2019-01-26 08:20:30 +00:00
|
|
|
use ra_db::SourceDatabase;
|
2019-01-08 19:33:36 +00:00
|
|
|
use ra_syntax::{
|
2019-02-27 15:52:37 +00:00
|
|
|
AstNode, SyntaxNode, TreeArc, ast::{self, NameOwner, VisibilityOwner, TypeAscriptionOwner},
|
2019-01-08 19:33:36 +00:00
|
|
|
algo::{find_covering_node, find_node_at_offset, find_leaf_at_offset, visit::{visitor, Visitor}},
|
|
|
|
};
|
|
|
|
|
|
|
|
use crate::{db::RootDatabase, RangeInfo, FilePosition, FileRange, NavigationTarget};
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
/// Contains the results when hovering over an item
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct HoverResult {
|
|
|
|
results: Vec<String>,
|
|
|
|
exact: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HoverResult {
|
|
|
|
pub fn new() -> HoverResult {
|
|
|
|
HoverResult {
|
|
|
|
results: Vec::new(),
|
|
|
|
// We assume exact by default
|
|
|
|
exact: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn extend(&mut self, item: Option<String>) {
|
|
|
|
self.results.extend(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_exact(&self) -> bool {
|
|
|
|
self.exact
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.results.is_empty()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.results.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn first(&self) -> Option<&str> {
|
|
|
|
self.results.first().map(String::as_str)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn results(&self) -> &[String] {
|
|
|
|
&self.results
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the results converted into markup
|
|
|
|
/// for displaying in a UI
|
|
|
|
pub fn to_markup(&self) -> String {
|
|
|
|
let mut markup = if !self.exact {
|
2019-02-28 19:48:21 +00:00
|
|
|
let mut msg = String::from("Failed to exactly resolve the symbol. This is probably because rust_analyzer does not yet support traits.");
|
2019-02-26 16:56:04 +00:00
|
|
|
if !self.results.is_empty() {
|
|
|
|
msg.push_str(" \nThese items were found instead:");
|
|
|
|
}
|
|
|
|
msg.push_str("\n\n---\n");
|
|
|
|
msg
|
|
|
|
} else {
|
|
|
|
String::new()
|
|
|
|
};
|
|
|
|
|
|
|
|
markup.push_str(&self.results.join("\n\n---\n"));
|
|
|
|
|
|
|
|
markup
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn hover(db: &RootDatabase, position: FilePosition) -> Option<RangeInfo<HoverResult>> {
|
2019-01-26 08:51:36 +00:00
|
|
|
let file = db.parse(position.file_id);
|
2019-02-26 16:56:04 +00:00
|
|
|
let mut res = HoverResult::new();
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
|
|
let mut range = None;
|
|
|
|
if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(file.syntax(), position.offset) {
|
2019-01-13 10:31:37 +00:00
|
|
|
use crate::goto_definition::{ReferenceResult::*, reference_definition};
|
2019-01-15 18:02:42 +00:00
|
|
|
let ref_result = reference_definition(db, position.file_id, name_ref);
|
2019-01-13 10:31:37 +00:00
|
|
|
match ref_result {
|
2019-01-15 18:02:42 +00:00
|
|
|
Exact(nav) => res.extend(doc_text_for(db, nav)),
|
2019-01-13 10:31:37 +00:00
|
|
|
Approximate(navs) => {
|
2019-02-26 16:56:04 +00:00
|
|
|
// We are no longer exact
|
|
|
|
res.exact = false;
|
|
|
|
|
2019-01-13 10:31:37 +00:00
|
|
|
for nav in navs {
|
2019-01-15 18:02:42 +00:00
|
|
|
res.extend(doc_text_for(db, nav))
|
2019-01-13 10:31:37 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
if !res.is_empty() {
|
|
|
|
range = Some(name_ref.syntax().range())
|
|
|
|
}
|
2019-02-27 07:49:22 +00:00
|
|
|
} else if let Some(name) = find_node_at_offset::<ast::Name>(file.syntax(), position.offset) {
|
|
|
|
let navs = crate::goto_definition::name_definition(db, position.file_id, name);
|
|
|
|
|
|
|
|
if let Some(navs) = navs {
|
|
|
|
for nav in navs {
|
|
|
|
res.extend(doc_text_for(db, nav))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !res.is_empty() && range.is_none() {
|
|
|
|
range = Some(name.syntax().range());
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
2019-02-26 16:56:04 +00:00
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
if range.is_none() {
|
|
|
|
let node = find_leaf_at_offset(file.syntax(), position.offset).find_map(|leaf| {
|
2019-02-08 11:49:43 +00:00
|
|
|
leaf.ancestors().find(|n| ast::Expr::cast(*n).is_some() || ast::Pat::cast(*n).is_some())
|
2019-01-15 18:02:42 +00:00
|
|
|
})?;
|
2019-02-08 11:49:43 +00:00
|
|
|
let frange = FileRange { file_id: position.file_id, range: node.range() };
|
2019-02-28 07:33:06 +00:00
|
|
|
res.extend(type_of(db, frange).map(rust_code_markup));
|
2019-01-08 19:33:36 +00:00
|
|
|
range = Some(node.range());
|
2019-02-27 07:49:22 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
2019-01-15 18:02:42 +00:00
|
|
|
let range = range?;
|
2019-01-08 19:33:36 +00:00
|
|
|
if res.is_empty() {
|
2019-01-15 18:02:42 +00:00
|
|
|
return None;
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
2019-02-26 16:56:04 +00:00
|
|
|
let res = RangeInfo::new(range, res);
|
2019-01-15 18:02:42 +00:00
|
|
|
Some(res)
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 18:02:42 +00:00
|
|
|
pub(crate) fn type_of(db: &RootDatabase, frange: FileRange) -> Option<String> {
|
2019-01-26 08:51:36 +00:00
|
|
|
let file = db.parse(frange.file_id);
|
2019-01-08 19:33:36 +00:00
|
|
|
let syntax = file.syntax();
|
|
|
|
let leaf_node = find_covering_node(syntax, frange.range);
|
|
|
|
// if we picked identifier, expand to pattern/expression
|
|
|
|
let node = leaf_node
|
|
|
|
.ancestors()
|
|
|
|
.take_while(|it| it.range() == leaf_node.range())
|
|
|
|
.find(|&it| ast::Expr::cast(it).is_some() || ast::Pat::cast(it).is_some())
|
|
|
|
.unwrap_or(leaf_node);
|
2019-01-15 18:02:42 +00:00
|
|
|
let parent_fn = node.ancestors().find_map(ast::FnDef::cast)?;
|
|
|
|
let function = hir::source_binder::function_from_source(db, frange.file_id, parent_fn)?;
|
2019-01-15 17:54:18 +00:00
|
|
|
let infer = function.infer(db);
|
2019-03-02 13:56:09 +00:00
|
|
|
let source_map = function.body_source_map(db);
|
|
|
|
if let Some(expr) = ast::Expr::cast(node).and_then(|e| source_map.node_expr(e)) {
|
2019-01-15 18:02:42 +00:00
|
|
|
Some(infer[expr].to_string())
|
2019-03-02 13:56:09 +00:00
|
|
|
} else if let Some(pat) = ast::Pat::cast(node).and_then(|p| source_map.node_pat(p)) {
|
2019-01-15 18:02:42 +00:00
|
|
|
Some(infer[pat].to_string())
|
2019-01-08 19:33:36 +00:00
|
|
|
} else {
|
2019-01-15 18:02:42 +00:00
|
|
|
None
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 07:33:06 +00:00
|
|
|
fn rust_code_markup<CODE: AsRef<str>>(val: CODE) -> String {
|
|
|
|
rust_code_markup_with_doc::<_, &str>(val, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rust_code_markup_with_doc<CODE, DOC>(val: CODE, doc: Option<DOC>) -> String
|
|
|
|
where
|
|
|
|
CODE: AsRef<str>,
|
|
|
|
DOC: AsRef<str>,
|
|
|
|
{
|
|
|
|
if let Some(doc) = doc {
|
|
|
|
format!("```rust\n{}\n```\n\n{}", val.as_ref(), doc.as_ref())
|
|
|
|
} else {
|
|
|
|
format!("```rust\n{}\n```", val.as_ref())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 16:18:27 +00:00
|
|
|
// FIXME: this should not really use navigation target. Rather, approximately
|
|
|
|
// resolved symbol should return a `DefId`.
|
2019-01-15 18:02:42 +00:00
|
|
|
fn doc_text_for(db: &RootDatabase, nav: NavigationTarget) -> Option<String> {
|
|
|
|
match (nav.description(db), nav.docs(db)) {
|
2019-02-28 07:33:06 +00:00
|
|
|
(Some(desc), docs) => Some(rust_code_markup_with_doc(desc, docs)),
|
2019-01-08 19:33:36 +00:00
|
|
|
(None, Some(docs)) => Some(docs),
|
|
|
|
_ => None,
|
2019-01-15 18:02:42 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl NavigationTarget {
|
2019-01-11 16:59:06 +00:00
|
|
|
fn node(&self, db: &RootDatabase) -> Option<TreeArc<SyntaxNode>> {
|
2019-01-26 08:51:36 +00:00
|
|
|
let source_file = db.parse(self.file_id());
|
2019-01-08 19:33:36 +00:00
|
|
|
let source_file = source_file.syntax();
|
|
|
|
let node = source_file
|
|
|
|
.descendants()
|
2019-01-11 15:17:20 +00:00
|
|
|
.find(|node| node.kind() == self.kind() && node.range() == self.full_range())?
|
2019-01-08 19:33:36 +00:00
|
|
|
.to_owned();
|
|
|
|
Some(node)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn docs(&self, db: &RootDatabase) -> Option<String> {
|
|
|
|
let node = self.node(db)?;
|
|
|
|
fn doc_comments<N: ast::DocCommentsOwner>(node: &N) -> Option<String> {
|
2019-01-26 15:35:23 +00:00
|
|
|
node.doc_comment_text()
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
visitor()
|
|
|
|
.visit(doc_comments::<ast::FnDef>)
|
|
|
|
.visit(doc_comments::<ast::StructDef>)
|
|
|
|
.visit(doc_comments::<ast::EnumDef>)
|
|
|
|
.visit(doc_comments::<ast::TraitDef>)
|
|
|
|
.visit(doc_comments::<ast::Module>)
|
2019-02-25 10:38:52 +00:00
|
|
|
.visit(doc_comments::<ast::TypeAliasDef>)
|
2019-01-08 19:33:36 +00:00
|
|
|
.visit(doc_comments::<ast::ConstDef>)
|
|
|
|
.visit(doc_comments::<ast::StaticDef>)
|
2019-02-27 15:52:37 +00:00
|
|
|
.visit(doc_comments::<ast::NamedFieldDef>)
|
2019-01-08 19:33:36 +00:00
|
|
|
.accept(&node)?
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a description of this node.
|
|
|
|
///
|
|
|
|
/// e.g. `struct Name`, `enum Name`, `fn Name`
|
|
|
|
fn description(&self, db: &RootDatabase) -> Option<String> {
|
|
|
|
// TODO: After type inference is done, add type information to improve the output
|
|
|
|
let node = self.node(db)?;
|
2019-01-14 01:25:14 +00:00
|
|
|
|
2019-02-27 15:52:37 +00:00
|
|
|
fn visit_ascribed_node<T>(node: &T, prefix: &str) -> Option<String>
|
|
|
|
where
|
|
|
|
T: NameOwner + VisibilityOwner + TypeAscriptionOwner,
|
|
|
|
{
|
|
|
|
let mut string = visit_node(node, prefix)?;
|
|
|
|
|
|
|
|
if let Some(type_ref) = node.ascribed_type() {
|
|
|
|
string.push_str(": ");
|
|
|
|
type_ref.syntax().text().push_to(&mut string);
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(string)
|
|
|
|
}
|
|
|
|
|
2019-01-14 01:25:14 +00:00
|
|
|
fn visit_node<T>(node: &T, label: &str) -> Option<String>
|
|
|
|
where
|
2019-02-26 16:55:08 +00:00
|
|
|
T: NameOwner + VisibilityOwner,
|
2019-01-14 01:25:14 +00:00
|
|
|
{
|
2019-02-08 11:49:43 +00:00
|
|
|
let mut string =
|
|
|
|
node.visibility().map(|v| format!("{} ", v.syntax().text())).unwrap_or_default();
|
2019-01-14 01:25:14 +00:00
|
|
|
string.push_str(label);
|
|
|
|
node.name()?.syntax().text().push_to(&mut string);
|
|
|
|
Some(string)
|
|
|
|
}
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
visitor()
|
2019-02-26 19:30:46 +00:00
|
|
|
.visit(crate::completion::function_label)
|
2019-01-14 01:25:14 +00:00
|
|
|
.visit(|node: &ast::StructDef| visit_node(node, "struct "))
|
|
|
|
.visit(|node: &ast::EnumDef| visit_node(node, "enum "))
|
|
|
|
.visit(|node: &ast::TraitDef| visit_node(node, "trait "))
|
|
|
|
.visit(|node: &ast::Module| visit_node(node, "mod "))
|
2019-02-25 10:38:52 +00:00
|
|
|
.visit(|node: &ast::TypeAliasDef| visit_node(node, "type "))
|
2019-02-27 15:52:37 +00:00
|
|
|
.visit(|node: &ast::ConstDef| visit_ascribed_node(node, "const "))
|
|
|
|
.visit(|node: &ast::StaticDef| visit_ascribed_node(node, "static "))
|
|
|
|
.visit(|node: &ast::NamedFieldDef| visit_ascribed_node(node, ""))
|
2019-01-08 19:33:36 +00:00
|
|
|
.accept(&node)?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use ra_syntax::TextRange;
|
2019-02-26 16:56:04 +00:00
|
|
|
use crate::mock_analysis::{single_file_with_position, single_file_with_range, analysis_and_position};
|
|
|
|
|
|
|
|
fn trim_markup(s: &str) -> &str {
|
|
|
|
s.trim_start_matches("```rust\n").trim_end_matches("\n```")
|
|
|
|
}
|
|
|
|
|
2019-02-28 07:33:06 +00:00
|
|
|
fn trim_markup_opt(s: Option<&str>) -> Option<&str> {
|
|
|
|
s.map(trim_markup)
|
|
|
|
}
|
|
|
|
|
2019-02-26 16:56:04 +00:00
|
|
|
fn check_hover_result(fixture: &str, expected: &[&str]) {
|
|
|
|
let (analysis, position) = analysis_and_position(fixture);
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
|
|
|
|
for (markup, expected) in
|
|
|
|
hover.info.results().iter().zip(expected.iter().chain(std::iter::repeat(&"<missing>")))
|
|
|
|
{
|
|
|
|
assert_eq!(trim_markup(&markup), *expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(hover.info.len(), expected.len());
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hover_shows_type_of_an_expression() {
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
"
|
|
|
|
pub fn foo() -> u32 { 1 }
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo_test = foo()<|>;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
assert_eq!(hover.range, TextRange::from_to(95.into(), 100.into()));
|
2019-02-28 07:33:06 +00:00
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("u32"));
|
2019-02-26 16:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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 results
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
&["pub fn foo() -> &str", "pub fn foo() -> u32", "pub fn foo(a: u32, b: u32)"],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
}
|
|
|
|
|
2019-02-27 07:49:22 +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"],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-27 15:52:37 +00:00
|
|
|
#[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,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
&["field_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,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
&["field_a: u32"],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hover_const_static() {
|
|
|
|
check_hover_result(
|
|
|
|
r#"
|
|
|
|
//- /main.rs
|
|
|
|
fn main() {
|
|
|
|
const foo<|>: u32 = 0;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
&["const foo: u32"],
|
|
|
|
);
|
|
|
|
|
|
|
|
check_hover_result(
|
|
|
|
r#"
|
|
|
|
//- /main.rs
|
|
|
|
fn main() {
|
|
|
|
static foo<|>: u32 = 0;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
&["static foo: u32"],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-20 21:36:54 +00:00
|
|
|
#[test]
|
|
|
|
fn hover_some() {
|
|
|
|
let (analysis, position) = single_file_with_position(
|
|
|
|
"
|
|
|
|
enum Option<T> { Some(T) }
|
|
|
|
use Option::Some;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
So<|>me(12);
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
|
|
|
// not the nicest way to show it currently
|
2019-02-28 07:33:06 +00:00
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Some<i32>(T) -> Option<T>"));
|
2019-02-20 21:36:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
#[test]
|
|
|
|
fn hover_for_local_variable() {
|
|
|
|
let (analysis, position) = single_file_with_position("fn func(foo: i32) { fo<|>o; }");
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-02-28 07:33:06 +00:00
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hover_for_local_variable_pat() {
|
|
|
|
let (analysis, position) = single_file_with_position("fn func(fo<|>o: i32) {}");
|
|
|
|
let hover = analysis.hover(position).unwrap().unwrap();
|
2019-02-28 07:33:06 +00:00
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("i32"));
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_type_of_for_function() {
|
|
|
|
let (analysis, range) = single_file_with_range(
|
|
|
|
"
|
|
|
|
pub fn foo() -> u32 { 1 };
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo_test = <|>foo()<|>;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
let type_name = analysis.type_of(range).unwrap().unwrap();
|
|
|
|
assert_eq!("u32", &type_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: improve type_of to make this work
|
|
|
|
#[test]
|
|
|
|
fn test_type_of_for_expr_1() {
|
|
|
|
let (analysis, range) = single_file_with_range(
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let foo = <|>1 + foo_test<|>;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
let type_name = analysis.type_of(range).unwrap().unwrap();
|
2019-03-02 19:55:56 +00:00
|
|
|
assert_eq!("{unknown}", &type_name);
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_type_of_for_expr_2() {
|
|
|
|
let (analysis, range) = single_file_with_range(
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let foo: usize = 1;
|
2019-01-14 19:56:14 +00:00
|
|
|
let bar = <|>1 + foo<|>;
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
|
|
|
let type_name = analysis.type_of(range).unwrap().unwrap();
|
2019-01-14 19:56:14 +00:00
|
|
|
assert_eq!("usize", &type_name);
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
2019-02-21 10:04:14 +00:00
|
|
|
#[test]
|
|
|
|
fn test_hover_infer_associated_method_result() {
|
|
|
|
let (analysis, position) = single_file_with_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();
|
2019-02-28 07:33:06 +00:00
|
|
|
assert_eq!(trim_markup_opt(hover.info.first()), Some("Thing"));
|
2019-02-21 10:04:14 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|