Remove dbg calls
This commit is contained in:
parent
8642a1d074
commit
dd6b674e7e
1 changed files with 5 additions and 10 deletions
|
@ -262,27 +262,22 @@ pub trait LspAdapter: 'static + Send + Sync {
|
||||||
container_dir: PathBuf,
|
container_dir: PathBuf,
|
||||||
) -> Option<LanguageServerBinary>;
|
) -> Option<LanguageServerBinary>;
|
||||||
|
|
||||||
async fn process_diagnostics(&self, d: &mut lsp::PublishDiagnosticsParams) {
|
async fn process_diagnostics(&self, _: &mut lsp::PublishDiagnosticsParams) {}
|
||||||
dbg!(d);
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn process_completion(&self, d: &mut lsp::CompletionItem) {
|
async fn process_completion(&self, _: &mut lsp::CompletionItem) {}
|
||||||
dbg!(d);
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn label_for_completion(
|
async fn label_for_completion(
|
||||||
&self,
|
&self,
|
||||||
item: &lsp::CompletionItem,
|
_: &lsp::CompletionItem,
|
||||||
_: &Arc<Language>,
|
_: &Arc<Language>,
|
||||||
) -> Option<CodeLabel> {
|
) -> Option<CodeLabel> {
|
||||||
dbg!(item);
|
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn label_for_symbol(
|
async fn label_for_symbol(
|
||||||
&self,
|
&self,
|
||||||
name: &str,
|
_: &str,
|
||||||
kind: lsp::SymbolKind,
|
_: lsp::SymbolKind,
|
||||||
_: &Arc<Language>,
|
_: &Arc<Language>,
|
||||||
) -> Option<CodeLabel> {
|
) -> Option<CodeLabel> {
|
||||||
None
|
None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue