aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor/src/symbols.rs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-15 21:59:33 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-15 21:59:33 +0100
commit8c74fd96192679525f985b9f6f85e9bdc011aa09 (patch)
treec606c0c34cb6a1e8ea3ea92b5bac0edaafa4d81e /crates/ra_editor/src/symbols.rs
parent575b8635073ae0ea9e2aebbab613daf97fe9af90 (diff)
parentf30a7deff17d7a69e1e9876d96d00392cd8f6fd1 (diff)
Merge #101
101: migrate to salsa-rs/salsa r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_editor/src/symbols.rs')
-rw-r--r--crates/ra_editor/src/symbols.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_editor/src/symbols.rs b/crates/ra_editor/src/symbols.rs
index 6211ed547..d9e4b2df7 100644
--- a/crates/ra_editor/src/symbols.rs
+++ b/crates/ra_editor/src/symbols.rs
@@ -17,7 +17,7 @@ pub struct StructureNode {
17 pub kind: SyntaxKind, 17 pub kind: SyntaxKind,
18} 18}
19 19
20#[derive(Debug, Clone, Hash)] 20#[derive(Debug, Clone, PartialEq, Eq, Hash)]
21pub struct FileSymbol { 21pub struct FileSymbol {
22 pub name: SmolStr, 22 pub name: SmolStr,
23 pub node_range: TextRange, 23 pub node_range: TextRange,