dead code

This commit is contained in:
Aleksey Kladov 2018-12-28 00:01:56 +03:00
parent dddbac6877
commit 58a631f39a
2 changed files with 1 additions and 21 deletions

View File

@ -7,10 +7,7 @@
use salsa::{Database, ParallelDatabase}; use salsa::{Database, ParallelDatabase};
use hir::{ use hir::{
self, self, FnSignatureInfo, Problem, source_binder,
FnSignatureInfo,
Problem,
source_binder,
}; };
use ra_db::{FilesDatabase, SourceRoot, SourceRootId, SyntaxDatabase}; use ra_db::{FilesDatabase, SourceRoot, SourceRootId, SyntaxDatabase};
use ra_editor::{self, FileSymbol, find_node_at_offset, LineIndex, LocalEdit, Severity}; use ra_editor::{self, FileSymbol, find_node_at_offset, LineIndex, LocalEdit, Severity};
@ -329,16 +326,6 @@ fn find_binding<'a>(
Ok(Some((binding, descr))) Ok(Some((binding, descr)))
} }
} }
pub fn doc_comment_for(
&self,
file_id: FileId,
symbol: FileSymbol,
) -> Cancelable<Option<String>> {
let file = self.db.source_file(file_id);
Ok(symbol.docs(&file))
}
pub fn doc_text_for(&self, file_id: FileId, symbol: FileSymbol) -> Cancelable<Option<String>> { pub fn doc_text_for(&self, file_id: FileId, symbol: FileSymbol) -> Cancelable<Option<String>> {
let file = self.db.source_file(file_id); let file = self.db.source_file(file_id);
let result = match (symbol.description(&file), symbol.docs(&file)) { let result = match (symbol.description(&file), symbol.docs(&file)) {

View File

@ -323,13 +323,6 @@ pub fn approximately_resolve_symbol(
pub fn find_all_refs(&self, position: FilePosition) -> Cancelable<Vec<(FileId, TextRange)>> { pub fn find_all_refs(&self, position: FilePosition) -> Cancelable<Vec<(FileId, TextRange)>> {
self.imp.find_all_refs(position) self.imp.find_all_refs(position)
} }
pub fn doc_comment_for(
&self,
file_id: FileId,
symbol: FileSymbol,
) -> Cancelable<Option<String>> {
self.imp.doc_comment_for(file_id, symbol)
}
pub fn doc_text_for(&self, file_id: FileId, symbol: FileSymbol) -> Cancelable<Option<String>> { pub fn doc_text_for(&self, file_id: FileId, symbol: FileSymbol) -> Cancelable<Option<String>> {
self.imp.doc_text_for(file_id, symbol) self.imp.doc_text_for(file_id, symbol)
} }