mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 20:42:04 +00:00
switch to internal feedback
This commit is contained in:
parent
971054e4d0
commit
952da31f44
6 changed files with 35 additions and 79 deletions
|
@ -1,7 +1,6 @@
|
|||
use std::collections::HashMap;
|
||||
use languageserver_types::{TextDocumentIdentifier, Range, Url, Position, Location};
|
||||
use url_serde;
|
||||
use project_model::CargoWorkspace;
|
||||
|
||||
pub use languageserver_types::{
|
||||
request::*, notification::*,
|
||||
|
@ -169,9 +168,9 @@ pub enum FileSystemEdit {
|
|||
}
|
||||
}
|
||||
|
||||
pub enum DidReloadWorkspace {}
|
||||
pub enum InternalFeedback {}
|
||||
|
||||
impl Notification for DidReloadWorkspace {
|
||||
const METHOD: &'static str = "m/didReloadWorkspace";
|
||||
type Params = Vec<CargoWorkspace>;
|
||||
impl Notification for InternalFeedback {
|
||||
const METHOD: &'static str = "internalFeedback";
|
||||
type Params = String;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue