Move reference classification to ra_ide_db

Lost some marks along the way :-(
This commit is contained in:
Aleksey Kladov 2020-03-03 18:50:15 +01:00
parent 34d6e22fc1
commit 177229bfde
5 changed files with 77 additions and 104 deletions

View file

@ -206,7 +206,6 @@ mod tests {
#[test]
fn goto_def_for_macros() {
covers!(goto_def_for_macros);
check_goto(
"
//- /lib.rs
@ -223,7 +222,6 @@ mod tests {
#[test]
fn goto_def_for_macros_from_other_crates() {
covers!(goto_def_for_macros);
check_goto(
"
//- /lib.rs
@ -335,7 +333,6 @@ mod tests {
#[test]
fn goto_def_for_methods() {
covers!(goto_def_for_methods);
check_goto(
"
//- /lib.rs
@ -355,7 +352,6 @@ mod tests {
#[test]
fn goto_def_for_fields() {
covers!(goto_def_for_fields);
check_goto(
"
//- /lib.rs
@ -374,7 +370,6 @@ mod tests {
#[test]
fn goto_def_for_record_fields() {
covers!(goto_def_for_record_fields);
check_goto(
"
//- /lib.rs
@ -787,7 +782,6 @@ mod tests {
#[test]
fn goto_def_for_field_init_shorthand() {
covers!(goto_def_for_field_init_shorthand);
check_goto(
"
//- /lib.rs