diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-02-08 21:45:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 21:45:10 +1100 |
commit | e368c5d0f9d69e69438cb0a8a8deb49d7b02901a (patch) | |
tree | b4375b56374f3aad19089e0f1016b1b892dc972c /cli/lsp/analysis.rs | |
parent | 09b79463d71f3b144a0cfd878108a012c87464ca (diff) |
feat(lsp): add implementations code lens (#9441)
Diffstat (limited to 'cli/lsp/analysis.rs')
-rw-r--r-- | cli/lsp/analysis.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/lsp/analysis.rs b/cli/lsp/analysis.rs index 7b0f159bb..0c3112ca8 100644 --- a/cli/lsp/analysis.rs +++ b/cli/lsp/analysis.rs @@ -289,6 +289,8 @@ pub fn analyze_dependencies( #[derive(Debug, Deserialize, Serialize)] pub enum CodeLensSource { + #[serde(rename = "implementations")] + Implementations, #[serde(rename = "references")] References, } |