rust/crates/rust-analyzer
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
..
src Auto merge of #13456 - emilio:scip-local-symbol, r=Veykril 2022-11-03 13:58:36 +00:00
tests/slow-tests Add new license 2022-10-15 14:26:30 +03:00
build.rs Fix typo in build.rs 2022-06-26 10:09:45 +00:00
Cargo.toml Pin lsp-types 2022-10-25 15:03:35 +03:00