mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
add gc request
This commit is contained in:
parent
6df1f71b7d
commit
f6adb85b68
7 changed files with 44 additions and 11 deletions
|
@ -19,6 +19,14 @@ impl Request for AnalyzerStatus {
|
|||
const METHOD: &'static str = "ra/analyzerStatus";
|
||||
}
|
||||
|
||||
pub enum CollectGarbage {}
|
||||
|
||||
impl Request for CollectGarbage {
|
||||
type Params = ();
|
||||
type Result = ();
|
||||
const METHOD: &'static str = "ra/collectGarbage";
|
||||
}
|
||||
|
||||
pub enum SyntaxTree {}
|
||||
|
||||
impl Request for SyntaxTree {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue