aboutsummaryrefslogtreecommitdiff
path: root/crates/hir
Commit message (Collapse)AuthorAgeFilesLines
* Filter out non-type completions in the respective completions modules insteadLukas Wirth2021-06-161-12/+0
|
* internal: more natural order of sources for TypeParamAleksey Kladov2021-06-141-1/+1
| | | | | We usually use first (left) variant of `Either` for "usual" case, and use right for odd things. For example, pat source is Pat | SelfParam.
* Merge #9260bors[bot]2021-06-141-1/+1
|\ | | | | | | | | | | | | | | 9260: tree-wide: make rustdoc links spiky so they are clickable r=matklad a=lf- Rustdoc was complaining about these while I was running with --document-private-items and I figure they should be fixed. Co-authored-by: Jade <[email protected]>
| * tree-wide: make rustdoc links spiky so they are clickableJade2021-06-141-1/+1
| |
* | internal: kill diagnostic sinkAleksey Kladov2021-06-133-135/+6
| |
* | internal: use cov-mark rather than bailing out diagnosticAleksey Kladov2021-06-132-45/+6
| |
* | internal: refactor missing match arms diagnosticsAleksey Kladov2021-06-132-23/+9
| |
* | internal: refactor incorrect case diagnosticsAleksey Kladov2021-06-132-36/+11
| |
* | internal: refactor find_map diagnosticAleksey Kladov2021-06-132-22/+8
| |
* | internal: refactor missing or or some diagnosticAleksey Kladov2021-06-132-34/+3
| |
* | internal: refactor remove this semicolon diagnosticsAleksey Kladov2021-06-132-24/+3
| |
* | internal: refactor mismatched args count diagnosticAleksey Kladov2021-06-132-30/+5
| |
* | internal: refactor missing unsafe diagnosticAleksey Kladov2021-06-132-23/+3
| |
* | internal: refactor BreakOutsideOfLoop diagnosticAleksey Kladov2021-06-132-22/+4
| |
* | internal: refactor NoSuchField diagnosticAleksey Kladov2021-06-132-24/+3
| |
* | internal: refactor unimplemented builtin macro diagnosticAleksey Kladov2021-06-132-26/+12
| |
* | internal: refactor macro errorAleksey Kladov2021-06-132-33/+13
| |
* | internal: refactor unresolved proc macro diagnosticAleksey Kladov2021-06-132-50/+17
| |
* | internal: refactor inactive code diagnosticsAleksey Kladov2021-06-132-41/+15
| |
* | internal: refactor unresolved macro call diagnosticAleksey Kladov2021-06-132-38/+19
| |
* | internal: refactor unresolved import diagnosticAleksey Kladov2021-06-132-26/+6
| |
* | internal: refactor unresolved extern crate diagnosticAleksey Kladov2021-06-132-25/+8
| |
* | internal: unified missing fields diagnosticAleksey Kladov2021-06-132-107/+62
| |
* | internal: move missing_fields diagnosticsAleksey Kladov2021-06-132-56/+20
| |
* | internal: start new diagnostics APIAleksey Kladov2021-06-132-34/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At the moment, this moves only a single diagnostic, but the idea is reafactor the rest to use the same pattern. We are going to have a single file per diagnostic. This file will define diagnostics code, rendering range and fixes, if any. It'll also have all of the tests. This is similar to how we deal with assists. After we refactor all diagnostics to follow this pattern, we'll probably move them to a new `ide_diagnostics` crate. Not that we intentionally want to test all diagnostics on this layer, despite the fact that they are generally emitted in the guts on the compiler. Diagnostics care to much about the end presentation details/fixes to be worth-while "unit" testing. So, we'll unit-test only the primary output of compilation process (types and name res tables), and will use integrated UI tests for diagnostics.
* | clippy::clone_on_copyMaan20032021-06-131-1/+1
| |
* | clippy::redudant_borrowMaan20032021-06-133-9/+9
| |
* | internal: move diagnostics infra to hirAleksey Kladov2021-06-123-17/+159
| |
* | Move some hir_ty diagnostics to hirAleksey Kladov2021-06-122-17/+421
| |
* | minor: optimizeAleksey Kladov2021-06-122-3/+5
| | | | | | | | | | We shouldn't be looking at the source map unless we actually have diagnostics.
* | internal: move missing unsafe diagnostic to hirAleksey Kladov2021-06-122-4/+40
| |
* | internal: move inference diagnostics to hirAleksey Kladov2021-06-122-4/+72
| |
* | Merge #9218bors[bot]2021-06-111-0/+14
|\ \ | | | | | | | | | | | | | | | | | | | | | 9218: Item search now respects trait impl items r=Veykril a=Veykril Fixes #2977 Co-authored-by: Lukas Wirth <[email protected]>
| * | Item search now respects trait impl itemsLukas Wirth2021-06-111-0/+14
| |/
* / Add more profiling for flyimportsKirill Bulatov2021-06-101-0/+4
|/
* Implement dummy expansions for builtin attributesLukas Wirth2021-06-091-0/+1
|
* Merge #9191bors[bot]2021-06-091-2/+10
|\ | | | | | | | | | | | | | | 9191: fix: Don't descend MacroCall TokenTree delimiters r=jonas-schievink a=Veykril Fixes #9190 Co-authored-by: Lukas Wirth <[email protected]>
| * Don't descend MacroCall TokenTree delimitersLukas Wirth2021-06-091-2/+10
| |
| |
| \
*-. \ Merge #9181 #9182bors[bot]2021-06-082-1/+21
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9181: Don't complete values in type position r=jonas-schievink a=Veykril Will add some proper tests in a bit 9182: fix: don't complete derive macros as fn-like macros r=jonas-schievink a=jonas-schievink Part of https://github.com/rust-analyzer/rust-analyzer/issues/8518 bors r+ Co-authored-by: Lukas Wirth <[email protected]> Co-authored-by: Jonas Schievink <[email protected]>
| | * | fix: don't complete derive macros as fn-like macrosJonas Schievink2021-06-081-0/+7
| | |/
| * / Don't complete values in type positionLukas Wirth2021-06-082-1/+14
| |/
* / source_to_def: skip items with no defJonas Schievink2021-06-081-50/+56
|/
* Merge #9169bors[bot]2021-06-072-20/+87
|\ | | | | | | | | | | | | | | | | | | 9169: internal: steps towards attribute macro token mapping r=jonas-schievink a=jonas-schievink This doesn't work yet, but we seem to be getting a bit further along (for example, we now stop highlighting `use` items inside item with attribute macros as if they were written verbatim). bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Attempt to track attr macros during highlightingJonas Schievink2021-06-071-0/+10
| |
| * Make "expand macro" command work with attribute macrosJonas Schievink2021-06-071-0/+16
| |
| * Handle attribute macros in `descend_into_macros`Jonas Schievink2021-06-062-20/+61
| |
* | feat: goto definition on an impl fn goes to that fn in the traitJade2021-06-071-4/+5
|/ | | | | | | e.g. if you have a trait T and `impl T for S` for some struct, if you goto definition on some function name inside the impl, it will go to the definition of that function inside the `trait T` block, rather than the current behaviour of not going anywhere at all.
* Expand procedural attribute macrosJonas Schievink2021-06-031-1/+15
|
* Merge #8866bors[bot]2021-05-311-1/+1
|\ | | | | | | | | | | | | | | 8866: Update salsa r=matklad a=jonas-schievink This updates salsa to include https://github.com/salsa-rs/salsa/pull/265, and removes all cancellation-related code from rust-analyzer Co-authored-by: Jonas Schievink <[email protected]>
| * Update salsaJonas Schievink2021-05-271-1/+1
| |