diff --git a/crates/ide/src/lib.rs b/crates/ide/src/lib.rs
index 20a5886c892..3e411e236b7 100644
--- a/crates/ide/src/lib.rs
+++ b/crates/ide/src/lib.rs
@@ -24,7 +24,7 @@ macro_rules! eprintln {
mod annotations;
mod call_hierarchy;
-mod call_info;
+mod signature_help;
mod doc_links;
mod highlight_related;
mod expand_macro;
@@ -75,7 +75,6 @@ macro_rules! eprintln {
pub use crate::{
annotations::{Annotation, AnnotationConfig, AnnotationKind},
call_hierarchy::CallItem,
- call_info::CallInfo,
expand_macro::ExpandedMacro,
file_structure::{StructureNode, StructureNodeKind},
folding_ranges::{Fold, FoldKind},
@@ -91,6 +90,7 @@ macro_rules! eprintln {
references::ReferenceSearchResult,
rename::RenameError,
runnables::{Runnable, RunnableKind, TestId},
+ signature_help::SignatureHelp,
static_index::{StaticIndex, StaticIndexedFile, TokenId, TokenStaticData},
syntax_highlighting::{
tags::{Highlight, HlMod, HlMods, HlOperator, HlPunct, HlTag},
@@ -450,9 +450,9 @@ pub fn external_docs(
self.with_db(|db| doc_links::external_docs(db, &position))
}
- /// Computes parameter information for the given call expression.
- pub fn call_info(&self, position: FilePosition) -> Cancellable