mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
rename FnDescriptior -> FnSignatureInfo
This commit is contained in:
parent
67de38ec7d
commit
7207eef716
4 changed files with 21 additions and 15 deletions
|
@ -42,7 +42,7 @@ use crate::{
|
|||
|
||||
pub use crate::{
|
||||
completion::CompletionItem,
|
||||
hir::FnDescriptor,
|
||||
hir::FnSignatureInfo,
|
||||
input::{CrateGraph, CrateId, FileId, FileResolver},
|
||||
};
|
||||
pub use ra_editor::{
|
||||
|
@ -305,7 +305,7 @@ impl Analysis {
|
|||
pub fn resolve_callable(
|
||||
&self,
|
||||
position: FilePosition,
|
||||
) -> Cancelable<Option<(FnDescriptor, Option<usize>)>> {
|
||||
) -> Cancelable<Option<(FnSignatureInfo, Option<usize>)>> {
|
||||
self.imp.resolve_callable(position)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue