aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | internal: refactor missing or or some diagnosticAleksey Kladov2021-06-135-58/+44
| | | |
| * | | internal: refactor remove this semicolon diagnosticsAleksey Kladov2021-06-138-83/+71
| | | |
* | | | Merge #9252bors[bot]2021-06-139-762/+752
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9252: internal: refactor mismatched args count diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: refactor mismatched args count diagnosticAleksey Kladov2021-06-134-280/+279
| | | |
| * | | internal: refactor missing unsafe diagnosticAleksey Kladov2021-06-134-107/+106
| | | |
| * | | internal: refactor BreakOutsideOfLoop diagnosticAleksey Kladov2021-06-134-32/+36
| | | |
| * | | internal: refactor NoSuchField diagnosticAleksey Kladov2021-06-135-314/+300
| | | |
| * | | internal: refactor unimplemented builtin macro diagnosticAleksey Kladov2021-06-134-31/+33
| | | |
* | | | Merge #9251bors[bot]2021-06-136-35/+18
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9251: minor: simplify r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | minor: simplifyAleksey Kladov2021-06-136-35/+18
| | | |
* | | | Merge #9250bors[bot]2021-06-136-50/+84
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9250: internal: check diagnostics in all files and not just the first one r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: check diagnostics in all files and not just the first oneAleksey Kladov2021-06-136-50/+84
|/ / /
* | | Merge #9249bors[bot]2021-06-1311-562/+398
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9249: internal: remove def-level diagnostics tests r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: remove def-level diagnostics testsAleksey Kladov2021-06-133-171/+21
| | | |
| * | | internal: refactor macro errorAleksey Kladov2021-06-137-198/+178
| | | |
| * | | internal: refactor unresolved proc macro diagnosticAleksey Kladov2021-06-135-61/+59
| | | |
| * | | internal: refactor inactive code diagnosticsAleksey Kladov2021-06-136-133/+141
| | | |
* | | | Merge #9248bors[bot]2021-06-137-186/+220
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9248: internal: refactor unresolved macro call diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: refactor unresolved macro call diagnosticAleksey Kladov2021-06-135-95/+94
| | | |
| * | | internal: refactor unresolved import diagnosticAleksey Kladov2021-06-136-92/+127
| | | |
* | | | Merge #9247bors[bot]2021-06-135-54/+60
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9247: internal: refactor unresolved extern crate diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: refactor unresolved extern crate diagnosticAleksey Kladov2021-06-135-54/+60
| | | |
* | | | Merge #9246bors[bot]2021-06-138-401/+342
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9246: internal: unified missing fields diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: unified missing fields diagnosticAleksey Kladov2021-06-135-142/+94
| | | |
| * | | internal: move missing_fields diagnosticsAleksey Kladov2021-06-136-109/+98
| | | |
* | | | Merge #9245bors[bot]2021-06-137-83/+123
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9245: internal: start new diagnostics API r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: start new diagnostics APIAleksey Kladov2021-06-137-83/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge #9244bors[bot]2021-06-135-36/+154
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9244: feat: Make block-local trait impls work r=flodiebold a=flodiebold As long as either the trait or the implementing type are defined in the same block. CC #8961 Co-authored-by: Florian Diebold <[email protected]>
| * | | | Make block-local trait impls workFlorian Diebold2021-06-135-36/+154
| | | | | | | | | | | | | | | | | | | | | | | | | As long as either the trait or the implementing type are defined in the same block.
* | | | | Merge #9243bors[bot]2021-06-135-6/+56
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / / | | | | | | | | | | | | | | | | | | | | 9243: internal: check that coverage marks are always paired r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: check that coverage marks are always pairedAleksey Kladov2021-06-133-6/+54
| | | |
| * | | minor: put a mark backAleksey Kladov2021-06-132-0/+2
|/ / /
* | | Merge #9242bors[bot]2021-06-13134-402/+372
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9242: Clippy r=matklad a=Maan2003 Best viewed commit wise Co-authored-by: Maan2003 <[email protected]>
| * | | cargo fmtMaan20032021-06-139-61/+38
| | | |
| * | | clippy::redundant_field_namesMaan20032021-06-136-7/+7
| | | |
| * | | clippy::manual_str_repeatMaan20032021-06-132-3/+3
| | | |
| * | | clippy::useless_returnMaan20032021-06-1310-15/+15
| | | |
| * | | clippy::redundant_closureMaan20032021-06-1312-17/+17
| | | |
| * | | clippy::clone_on_copyMaan20032021-06-137-7/+6
| | | |
| * | | clippy::useless_conversionMaan20032021-06-139-22/+16
| | | |
| * | | clippy::redudant_borrowMaan20032021-06-13114-285/+285
| | | |
* | | | Merge #9240bors[bot]2021-06-131-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 9240: Fixed a small typo in comment r=matklad a=fee1-dead Co-authored-by: fee1-dead <[email protected]>
| * | | Fixed a small typo in commentfee1-dead2021-06-111-1/+1
| | | |
* | | | Merge #9239bors[bot]2021-06-126-55/+184
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9239: fix: Fix coercion in match with expected type r=flodiebold a=flodiebold Plus add infrastructure to test type mismatches without expect. CC #8961 Co-authored-by: Florian Diebold <[email protected]>
| * | | | Fix coercion in match with expected typeFlorian Diebold2021-06-126-55/+184
| | | | | | | | | | | | | | | | | | | | Plus add infrastructure to test type mismatches without expect.
* | | | | Merge #9238bors[bot]2021-06-1212-12/+15
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9238: internal: cross-crate cov-marks r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | internal: cross-crate cov-marksAleksey Kladov2021-06-1212-12/+15
|/ / / /
* | | | Merge #9237bors[bot]2021-06-127-520/+417
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9237: internal: move diagnostics infra to hir r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | internal: move diagnostics infra to hirAleksey Kladov2021-06-127-520/+417
| | | | |
* | | | | Merge #9236bors[bot]2021-06-121-9/+9
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9236: Fix some typos in flyimport docs r=SomeoneToIgnore a=SomeoneToIgnore bors r+ Co-authored-by: Kirill Bulatov <[email protected]>