rust-analyzer/crates/ide
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
Cargo.toml Bump pulldown-cmark-to-cmark 2022-10-15 13:00:41 +03:00