diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-30 12:30:51 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-30 12:30:51 +0100 |
commit | 6a73d544f4117b942b300afb8bda98216fc92356 (patch) | |
tree | 18b444a0d447465a7de75ec5a0153c90b8566a7f /crates/ra_db | |
parent | 5a0fb3caff745d20face2d7ab02fa4da63faef9c (diff) | |
parent | af7e300041b1af68e671446fe22d2b9e5d30f83d (diff) |
Merge #5137
5137: Make gotodef tests more data-driven r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_db')
-rw-r--r-- | crates/ra_db/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_db/src/lib.rs b/crates/ra_db/src/lib.rs index 4a3ba57da..1ddacc1f6 100644 --- a/crates/ra_db/src/lib.rs +++ b/crates/ra_db/src/lib.rs | |||
@@ -80,7 +80,7 @@ pub struct FilePosition { | |||
80 | pub offset: TextSize, | 80 | pub offset: TextSize, |
81 | } | 81 | } |
82 | 82 | ||
83 | #[derive(Clone, Copy, Debug)] | 83 | #[derive(Clone, Copy, Debug, Eq, PartialEq)] |
84 | pub struct FileRange { | 84 | pub struct FileRange { |
85 | pub file_id: FileId, | 85 | pub file_id: FileId, |
86 | pub range: TextRange, | 86 | pub range: TextRange, |