aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Implement a config override for the default #[cfg(test)] in cargo cratesJade2021-06-197-55/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes crates which vanish when the 'test' cfg atom is set. Fix #7243. Fix #9203. Fix #7225.
| * | | | | Fix libcore not being included in rust-lang/rust module treeJade2021-06-192-2/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you are opening libcore from rust-lang/rust as opposed to e.g. goto definition from some other crate which would use the sysroot instance of libcore, a `#![cfg(not(test))]` would previously have made all the code excluded from the module tree, breaking the editor experience. This puts in a slight hack that checks for the crate name "core" and turns off `#[cfg(test)]`.
* | | | | | Merge #9357bors[bot]2021-06-211-6/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9357: fix: Update sysroot crates r=jonas-schievink a=jonas-schievink Removes `rtstartup`, since that's not a Cargo crate (its files are compiled into object files and linked alongside the stdlib). Adds `std_detect`. Part of https://github.com/rust-analyzer/rust-analyzer/issues/9352 (doesn't fix it since std_detect is full of `cfg_if!`) bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * | | | | | Update sysroot cratesJonas Schievink2021-06-211-6/+5
|/ / / / / /
* | | | | | Merge #9356bors[bot]2021-06-2110-677/+557
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9356: internal: Move out and regroup more completion tests r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | | | | Various keyword completion fixesLukas Wirth2021-06-214-16/+22
| | | | | | |
| * | | | | | Move out completion type position testsLukas Wirth2021-06-215-206/+198
| | | | | | |
| * | | | | | Move out completion pattern testsLukas Wirth2021-06-215-467/+349
| | |_|_|_|/ | |/| | | |
* | | | | | Merge #9355bors[bot]2021-06-211-3/+33
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9355: Don't insert `}` when typing `{` in string r=jonas-schievink a=jonas-schievink Checks that the token at the cursor is `L_CURLY`. Fixes https://github.com/rust-analyzer/rust-analyzer/issues/9351 bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * | | | | | Don't insert `}` when typing `{` in stringJonas Schievink2021-06-211-3/+33
| | |_|/ / / | |/| | | |
* | | | | | Merge #9347bors[bot]2021-06-211-0/+5
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9347: add note about passing cfg(debug_assertions) r=matklad a=rezural add note about passing cfg(debug_assertions) to rustc on build. The server will not spin on start without this arcane hack Co-authored-by: rezural <[email protected]>
| * | | | | add note about passing cfg(debug_assertions)rezural2021-06-201-0/+5
| | |_|_|/ | |/| | | | | | | | add note about passing cfg(debug_assertions) to rustc on build. The server will not spin without this arcane hack
* | | | | Merge #9346bors[bot]2021-06-2012-996/+557
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9346: Refactor / clean up hir_ty tests r=flodiebold a=flodiebold Notable changes: - unify `check_types` and `check_mismatches` into `check`, which supports both kinds of annotations (`check_types` still exists because I didn't want to change all the annotations, but uses the same implementation) - because of that, `check_types` now fails on any type mismatches; also annotations always have to hit the exact range - there's also `check_no_mismatches` for when we explicitly just want to check that there are no type mismatches without giving any annotations (`check` will fail without annotations) - test annotations can now be overlapping (they point to the nearest line that has actual code in that range): ``` // ^^^^ annotation // ^^^^^^^^^ another annotation ``` Co-authored-by: Florian Diebold <[email protected]>
| * | | | | Fix `benchmark_include_macro`Florian Diebold2021-06-201-1/+1
| | | | | |
| * | | | | More cleanups, use `check` for `display_source_code` testsFlorian Diebold2021-06-202-85/+67
| | | | | |
| * | | | | Clean up coercion testsFlorian Diebold2021-06-201-552/+117
| | | | | |
| * | | | | test_utils: Make overlapping annotations possibleFlorian Diebold2021-06-201-6/+44
| | | | | |
| * | | | | Unify check_mismatches and check_typesFlorian Diebold2021-06-209-380/+353
| | | | | |
| * | | | | Add coverage mark for block local implsFlorian Diebold2021-06-201-1/+4
|/ / / / /
* | | | | Merge #9345bors[bot]2021-06-202-68/+72
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9345: fix: don't add duplicate `&` during completion r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | fix: don't add duplicate `&` during completionAleksey Kladov2021-06-202-68/+72
|/ / / / /
* | | | | Merge #9344bors[bot]2021-06-201-24/+22
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9344: fix: rename works when invoked on a reference r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | fix: rename works when invoked on a referenceAleksey Kladov2021-06-201-24/+22
| | | | | |
* | | | | | Merge #9328bors[bot]2021-06-202-25/+25
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9328: internal: Update deps r=lnicola a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | | | | Update testkjeremy2021-06-181-1/+1
| | | | | |
| * | | | | cargo updatekjeremy2021-06-181-24/+24
| | | | | |
* | | | | | Merge #9339bors[bot]2021-06-193-91/+78
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9339: minor: Cleanup insert_use tests r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | | | Cleanup insert_use testsLukas Wirth2021-06-193-91/+78
|/ / / / /
* | | | | Merge #9338bors[bot]2021-06-191-6/+1
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9338: minor: use minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | minor: use minicoreAleksey Kladov2021-06-191-6/+1
| | | | |
* | | | | Merge #9335bors[bot]2021-06-184-32/+118
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9335: feat: Don't insert imports outside of cfg attributed items r=Veykril a=Veykril Closes #6939 Co-authored-by: Lukas Wirth <[email protected]>
| * | | | | Don't insert imports outside of cfg attributed itemsLukas Wirth2021-06-184-32/+118
|/ / / / /
* | | | | Merge #9334bors[bot]2021-06-1814-17/+99
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9334: feat: Allow to disable import insertion on single path glob imports r=Veykril a=Veykril On by default as I feel like this is something the majority would prefer. Closes #8490 Co-authored-by: Lukas Wirth <[email protected]>
| * | | | | Allow to disable import insertion on single path glob importsLukas Wirth2021-06-1814-17/+99
| | | | | |
* | | | | | Merge #9333bors[bot]2021-06-184-36/+18
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9333: minor: use minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | minor: use minicoreAleksey Kladov2021-06-184-36/+18
| | | | | |
* | | | | | Merge #9332bors[bot]2021-06-188-257/+109
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9332: minor: use minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | minor: use minicoreAleksey Kladov2021-06-182-69/+43
| | | | | |
| * | | | | minor: use minicoreAleksey Kladov2021-06-183-27/+10
| | | | | |
| * | | | | minor: use minicoreAleksey Kladov2021-06-183-85/+13
| | | | | |
| * | | | | minor: use minicoreAleksey Kladov2021-06-182-76/+43
| | | | | |
* | | | | | Merge #9331bors[bot]2021-06-186-165/+131
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9331: internal: add index to minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | internal: use minicore deref moreAleksey Kladov2021-06-185-127/+81
| | | | | |
| * | | | | internal: add index to minicoreAleksey Kladov2021-06-182-38/+50
| | | | | |
* | | | | | Merge #9330bors[bot]2021-06-186-104/+72
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9330: minor: use minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | minor: use minicoreAleksey Kladov2021-06-183-87/+69
| | | | | |
| * | | | | minor: use minicoreAleksey Kladov2021-06-183-17/+3
|/ / / / /
* | | | | Merge #9329bors[bot]2021-06-183-307/+465
|\ \ \ \ \ | |_|/ / / |/| | / / | | |/ / | |/| | | | | | | | | | | | | | | | | | 9329: internal: add Copy to minicore r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: add Copy to minicoreAleksey Kladov2021-06-183-307/+465
|/ / /
* | | Merge #9327bors[bot]2021-06-181-6/+6
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9327: Update css-what r=kjeremy a=kjeremy npm audit flagged our version of css-what Co-authored-by: kjeremy <[email protected]>