diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-15 21:59:33 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-15 21:59:33 +0100 |
commit | 8c74fd96192679525f985b9f6f85e9bdc011aa09 (patch) | |
tree | c606c0c34cb6a1e8ea3ea92b5bac0edaafa4d81e /crates/ra_syntax | |
parent | 575b8635073ae0ea9e2aebbab613daf97fe9af90 (diff) | |
parent | f30a7deff17d7a69e1e9876d96d00392cd8f6fd1 (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_syntax')
-rw-r--r-- | crates/ra_syntax/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs index 5bb54aba1..7eba5ee61 100644 --- a/crates/ra_syntax/src/lib.rs +++ b/crates/ra_syntax/src/lib.rs | |||
@@ -59,7 +59,7 @@ use crate::{ | |||
59 | yellow::{GreenNode}, | 59 | yellow::{GreenNode}, |
60 | }; | 60 | }; |
61 | 61 | ||
62 | #[derive(Clone, Debug, Hash)] | 62 | #[derive(Clone, Debug, Hash, PartialEq, Eq)] |
63 | pub struct File { | 63 | pub struct File { |
64 | root: SyntaxNode | 64 | root: SyntaxNode |
65 | } | 65 | } |