aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/goto_definition.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-03 17:50:15 +0000
committerAleksey Kladov <[email protected]>2020-03-03 17:50:15 +0000
commit177229bfde686bbfd66c0f6987f40b5ca282ab45 (patch)
tree60220c642d71ea3dba2c526c7d880c28a14d261a /crates/ra_ide/src/goto_definition.rs
parent34d6e22fc12209417c15d215052857ddac79cdf4 (diff)
Move reference classification to ra_ide_db
Lost some marks along the way :-(
Diffstat (limited to 'crates/ra_ide/src/goto_definition.rs')
-rw-r--r--crates/ra_ide/src/goto_definition.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/crates/ra_ide/src/goto_definition.rs b/crates/ra_ide/src/goto_definition.rs
index 76ee232a3..6f0dbe065 100644
--- a/crates/ra_ide/src/goto_definition.rs
+++ b/crates/ra_ide/src/goto_definition.rs
@@ -206,7 +206,6 @@ mod tests {
206 206
207 #[test] 207 #[test]
208 fn goto_def_for_macros() { 208 fn goto_def_for_macros() {
209 covers!(goto_def_for_macros);
210 check_goto( 209 check_goto(
211 " 210 "
212 //- /lib.rs 211 //- /lib.rs
@@ -223,7 +222,6 @@ mod tests {
223 222
224 #[test] 223 #[test]
225 fn goto_def_for_macros_from_other_crates() { 224 fn goto_def_for_macros_from_other_crates() {
226 covers!(goto_def_for_macros);
227 check_goto( 225 check_goto(
228 " 226 "
229 //- /lib.rs 227 //- /lib.rs
@@ -335,7 +333,6 @@ mod tests {
335 333
336 #[test] 334 #[test]
337 fn goto_def_for_methods() { 335 fn goto_def_for_methods() {
338 covers!(goto_def_for_methods);
339 check_goto( 336 check_goto(
340 " 337 "
341 //- /lib.rs 338 //- /lib.rs
@@ -355,7 +352,6 @@ mod tests {
355 352
356 #[test] 353 #[test]
357 fn goto_def_for_fields() { 354 fn goto_def_for_fields() {
358 covers!(goto_def_for_fields);
359 check_goto( 355 check_goto(
360 " 356 "
361 //- /lib.rs 357 //- /lib.rs
@@ -374,7 +370,6 @@ mod tests {
374 370
375 #[test] 371 #[test]
376 fn goto_def_for_record_fields() { 372 fn goto_def_for_record_fields() {
377 covers!(goto_def_for_record_fields);
378 check_goto( 373 check_goto(
379 " 374 "
380 //- /lib.rs 375 //- /lib.rs
@@ -787,7 +782,6 @@ mod tests {
787 782
788 #[test] 783 #[test]
789 fn goto_def_for_field_init_shorthand() { 784 fn goto_def_for_field_init_shorthand() {
790 covers!(goto_def_for_field_init_shorthand);
791 check_goto( 785 check_goto(
792 " 786 "
793 //- /lib.rs 787 //- /lib.rs