aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
| * internal: switch some tests to minicoreAleksey Kladov2021-06-162-15/+8
| |
| * internal: add iterator to minicoreAleksey Kladov2021-06-162-39/+38
| |
| * internal: switch some tests to minicoreAleksey Kladov2021-06-161-15/+12
| |
| * internal: switch some tests to minicoreAleksey Kladov2021-06-161-19/+15
| |
* | Move test_utils into tests moduleLukas Wirth2021-06-1626-238/+194
| |
* | Don't complete paths after attributesLukas Wirth2021-06-167-135/+123
| |
* | Don't show incorrect completions after unsafe or visiblity nodeLukas Wirth2021-06-164-42/+38
| |
* | Don't complete visibility accessors after existing onesLukas Wirth2021-06-164-3/+24
| |
* | Start refactoring ide_completion testsLukas Wirth2021-06-169-247/+302
|/
* Merge #9302bors[bot]2021-06-161-7/+67
|\ | | | | | | | | | | | | | | 9302: internal: Add builtin derives to attribute completion fixtures r=Veykril a=Veykril bors R+ Co-authored-by: Lukas Wirth <[email protected]>
| * Don't complete already used derive attributesLukas Wirth2021-06-161-20/+20
| |
| * Add builtin derives to attribute completion fixturesLukas Wirth2021-06-161-7/+67
| |
* | Merge #9258bors[bot]2021-06-161-4/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | 9258: minor: Give `ImportPrefix` variants better config names r=matklad a=Veykril I feel like `crate` and `self` work better than `by_crate` and `by_self`. The only reason for the current names were that `Self` doesn't work for the variant name on the rust side so I forgot about setting proper config names on serde layer. Co-authored-by: Lukas Wirth <[email protected]>
| * | Give ImportPrefix variants better config namesLukas Wirth2021-06-131-4/+6
| | |
* | | SimplifyLukas Wirth2021-06-163-66/+34
| |/ |/|
* | Merge #9299bors[bot]2021-06-166-71/+94
|\ \ | | | | | | | | | | | | | | | | | | | | | 9299: minor: Filter out non-type completions in the respective completions modules instead r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | Filter out non-type completions in the respective completions modules insteadLukas Wirth2021-06-166-71/+94
| | |
* | | internal: add fn to minicoreAleksey Kladov2021-06-166-310/+258
| | |
* | | internal: add deref_mut to minicoreAleksey Kladov2021-06-163-35/+49
| | |
* | | Merge #9293bors[bot]2021-06-151-3/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9293: fix: Show diagnostic fixes before assists r=matklad a=lnicola Closes #9212 Co-authored-by: Laurențiu Nicola <[email protected]>
| * | | Show diagnostic fixes before assistsLaurențiu Nicola2021-06-151-3/+4
| |/ /
* | | Merge #9294bors[bot]2021-06-1513-1027/+1149
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9294: internal: introduce minicore -- a subset of libcore for testing r=matklad a=matklad Clearly, we need one more fixed point iteration loop! Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-152-18/+9
| | | |
| * | | internal: add result to minicoreAleksey Kladov2021-06-152-21/+18
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-151-17/+3
| | | |
| * | | internal: add option to minicoreAleksey Kladov2021-06-153-41/+25
| | | |
| * | | internal: add future to minicoreAleksey Kladov2021-06-152-12/+39
| | | |
| * | | internal: sanity-check minicore flagsAleksey Kladov2021-06-152-2/+11
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-153-70/+59
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-152-55/+32
| | | |
| * | | internal: add ranges to minicoreAleksey Kladov2021-06-152-28/+42
| | | |
| * | | internal: unindent some testsAleksey Kladov2021-06-151-255/+252
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-152-111/+102
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-153-62/+75
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-151-181/+129
| | | |
| * | | internal: switch some tests to minicoreAleksey Kladov2021-06-152-118/+88
| | | |
| * | | internal: introduce minicore -- a subset of libcore for testingAleksey Kladov2021-06-156-42/+271
| |/ /
* / / Highlight unsafe trait refs as unsafe only in impl blocks and definitionsLukas Wirth2021-06-1513-19/+60
|/ /
* | internal: enforce no #[ignore] and no #[should_panic]Aleksey Kladov2021-06-152-2/+2
| |
* | internal: don't #[ignore] testsAleksey Kladov2021-06-154-83/+27
| | | | | | | | See the style.md for motivation
* | internal: cleanup testsAleksey Kladov2021-06-153-613/+600
| | | | | | | | | | | | * ensure standard, non-indented style (should add this check to `fixture` some day) * removed a couple of ignores
* | minor: add a test variationAleksey Kladov2021-06-151-5/+13
| |
* | Merge #9278bors[bot]2021-06-157-71/+79
|\ \ | | | | | | | | | | | | | | | | | | | | | 9278: internal: document that we don't #[ignore] tests r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | internal: document that we don't #[ignore] testsAleksey Kladov2021-06-157-71/+79
| | |
* | | Use objects instead of bools for markers in package.jsonLaurențiu Nicola2021-06-151-2/+2
| | |
* | | Merge #9277bors[bot]2021-06-145-12/+12
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 9277: internal: more natural order of sources for TypeParam r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | internal: more natural order of sources for TypeParamAleksey Kladov2021-06-145-12/+12
| | | | | | | | | | | | | | | 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 #9276bors[bot]2021-06-1419-341/+359
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 9276: internal: refactor diagnostics more r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | internal: test diagnostic severeties and presense of fixesAleksey Kladov2021-06-1416-140/+155
| | |
| * | minor: make diagnostics more similarAleksey Kladov2021-06-145-201/+204
| | |