rust/crates/ide-db/src
Nicolas Guichard 73d9c77f2a scip: Populate SymbolInformation::kind
SymbolInformation::kind is finer-grained than the SCIP symbol suffix.
This also fixes a bug where all type aliases where treated like type
parameters.

```
trait SomeTrait {
  type AssociatedType; // ← this is SomeTrait#[AssociatedType]
}

type MyTypeAlias = u8; // ← this used to be [MyTypeAlias]
                       //   and now is MyTypeAlias#
```
2024-01-03 13:05:36 +01:00
..
generated feat: generate descriptors for all unstable features 2023-10-09 09:36:47 +02:00
imports internal: Move out WithFixture into dev-dep only crate 2023-12-18 15:24:08 +01:00
syntax_helpers
test_data Make functions in impl have a container name 2023-12-17 13:44:47 -05:00
tests feat: generate descriptors for all unstable features 2023-10-09 09:36:47 +02:00
active_parameter.rs
apply_change.rs internal: Move out WithFixture into dev-dep only crate 2023-12-18 15:24:08 +01:00
assists.rs
defs.rs scip: Populate SymbolInformation::kind 2024-01-03 13:05:36 +01:00
documentation.rs Don't trim trailing whitespace from doc comments 2023-12-10 20:54:22 +00:00
famous_defs.rs make generate_mut_trait_impl assist trigged for std trait only 2023-11-05 12:27:10 +08:00
helpers.rs Implicit format args support 2023-12-05 17:07:00 +01:00
items_locator.rs Partially revert #16101 2023-12-12 22:53:40 +01:00
label.rs
lib.rs internal: Move out WithFixture into dev-dep only crate 2023-12-18 15:24:08 +01:00
path_transform.rs fix: rewrite code_action generate_delegate_trait 2023-12-13 11:22:42 +08:00
rename.rs fix: Deduplicate annotations 2023-12-19 08:49:00 +01:00
rust_doc.rs
search.rs Implicit format args support 2023-12-05 17:07:00 +01:00
source_change.rs Bump itertools 2023-11-15 12:53:56 +02:00
symbol_index.rs Auto merge of #16139 - jimmyhmiller:master, r=Veykril 2024-01-02 14:08:37 +00:00
traits.rs internal: Move out WithFixture into dev-dep only crate 2023-12-18 15:24:08 +01:00
ty_filter.rs
use_trivial_constructor.rs