aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/references.rs
Commit message (Collapse)AuthorAgeFilesLines
* Change <|> to $0 - RebaseKevaundray Wedderburn2021-01-071-37/+37
|
* Add ConstParams to the ide layerLukas Wirth2021-01-011-0/+16
|
* Support labels in reference searchLukas Wirth2020-12-241-1/+23
|
* Acquire original text range when searching for referencesLukas Wirth2020-12-211-6/+42
|
* Deduplicate highlight tags and symbol kindsAleksey Kladov2020-12-181-2/+2
| | | | | | | Curiously, LSP uses different enums for those, and unsurprising and annoyingly, there are things which exist in one but not in the other. Let's not repeat the mistake and unify the two things
* NavTarget doesn't assume that it points to a symbolAleksey Kladov2020-12-181-1/+1
|
* Don't expose SyntaxKind from IDE APIAleksey Kladov2020-12-181-36/+36
| | | | | | SyntaxKind is somewhat of an internal type, but IDE is using it to basically specify an icon. Let's have a dedicated entity for this instead.
* Lifetime reference searchLukas Wirth2020-12-161-5/+86
|
* Move to upstream `macro_rules!` modelJonas Schievink2020-12-151-1/+1
|
* Add find usages for enum constructorsDaiki Ihara2020-12-141-0/+115
|
* Support self in reference searchLukas Wirth2020-11-291-1/+102
|
* Use shorthand field syntax in destructuresLukas Wirth2020-11-141-2/+2
|
* Properly handle shorthands in destructure patterns when renamingLukas Wirth2020-11-141-6/+15
|
* Remove more unreachable pubsAleksey Kladov2020-11-021-6/+2
|
* Re-export base_db from ide_dbIgor Aleksanov2020-10-241-1/+1
|
* Clarify the names one more timeAleksey Kladov2020-10-151-2/+2
|
* More idiomatic classification APIAleksey Kladov2020-10-151-3/+3
|
* More clarificationsAleksey Kladov2020-10-151-1/+1
|
* Clarify NameClass names a bitAleksey Kladov2020-10-151-1/+1
|
* Add fix for incorrect case diagnosticIgor Aleksanov2020-10-121-1/+1
|
* Show reason for failed rename refactoringRĂ¼diger Herrmann2020-10-101-0/+1
| | | | | | | | | | | Return an error with a meaningful message for requests to `textDocument/rename` if the operation cannot be performed. Pass errors raised by rename handling code to the LSP runtime. As a consequence, the VS Code client shows and logs the request as if a server-side programming error occured. Resolves https://github.com/rust-analyzer/rust-analyzer/issues/3981
* adt: correctly inherit field visibility from enumJonas Schievink2020-10-091-0/+24
| | | | | | | Previously, "find all references" on a variant field wouldn't find any references outside the defining module. This is because variant fields were incorrectly assumed to be private, like struct fields without explicit visibility, but they actually inherit the enum's visibility.
* Treat `ast::Name` in field patterns as useJonas Schievink2020-10-091-0/+46
|
* Fix source_to_def for named enum variant fieldsJonas Schievink2020-10-091-0/+17
|
* rename mock_analysis -> fixtureAleksey Kladov2020-10-021-2/+2
|
* Get rid of MockAnalysisAleksey Kladov2020-10-021-60/+58
|
* Expectify find_references testsAleksey Kladov2020-10-021-176/+181
|
* Future proof find-usages APIAleksey Kladov2020-08-191-1/+3
| | | | | | We might want to provide more efficient impls for check if usages exist, limiting the search, filtering and cancellation, so let's violate YAGNI a bit here.
* Rename ra_ide -> ideAleksey Kladov2020-08-131-0/+694