bors bbcb77ea6f Auto merge of #13456 - emilio:scip-local-symbol, r=Veykril
scip: Generate symbols for local crates.

Consider something like:

```
// a.rs
pub struct Foo { .. } // Foo is "local 1"

fn something() {
    crate:🅱️:Bar::new() // Bar is "local 1", but of "b.rs"
}

// b.rs
pub struct Bar { .. } // "local 1"
```

Without this there's no way to disambiguate whether "local 1" references "Bar" or "Foo".
2022-11-03 13:58:36 +00:00
..
2022-10-15 12:52:34 +03:00
2022-10-15 12:55:56 +03:00
2022-10-15 12:55:56 +03:00
2022-10-15 12:53:26 +03:00
2022-10-15 13:03:39 +03:00