diff options
author | Pascal Hertleif <[email protected]> | 2019-05-26 14:39:57 +0100 |
---|---|---|
committer | Pascal Hertleif <[email protected]> | 2019-05-27 10:26:35 +0100 |
commit | 4ac338b608bb40c5126d019db63232e7834914c2 (patch) | |
tree | 036d6b04b37eef4dd16b60ca738a7b26a737cf9f /crates | |
parent | 5abcca516d3563416d3fba9f2e4b8b024d10f846 (diff) |
rename stray id field
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/req.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 1df8224ba..e36db12b3 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -875,7 +875,7 @@ fn highlight(world: &ServerWorld, file_id: FileId) -> Result<Vec<Decoration>> { | |||
875 | .map(|h| Decoration { | 875 | .map(|h| Decoration { |
876 | range: h.range.conv_with(&line_index), | 876 | range: h.range.conv_with(&line_index), |
877 | tag: h.tag, | 877 | tag: h.tag, |
878 | id: h.binding_hash.map(|x| x.to_string()), | 878 | binding_hash: h.binding_hash.map(|x| x.to_string()), |
879 | }) | 879 | }) |
880 | .collect(); | 880 | .collect(); |
881 | Ok(res) | 881 | Ok(res) |
diff --git a/crates/ra_lsp_server/src/req.rs b/crates/ra_lsp_server/src/req.rs index cea0e6ce7..992c24eac 100644 --- a/crates/ra_lsp_server/src/req.rs +++ b/crates/ra_lsp_server/src/req.rs | |||
@@ -129,7 +129,7 @@ pub struct PublishDecorationsParams { | |||
129 | pub struct Decoration { | 129 | pub struct Decoration { |
130 | pub range: Range, | 130 | pub range: Range, |
131 | pub tag: &'static str, | 131 | pub tag: &'static str, |
132 | pub id: Option<String>, | 132 | pub binding_hash: Option<String>, |
133 | } | 133 | } |
134 | 134 | ||
135 | pub enum ParentModule {} | 135 | pub enum ParentModule {} |