aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Replace OUT_DIR in project.json with general envAleksey Kladov2020-07-212-9/+7
| | | | OUT_DIR doesn't make sense here, as this is a cargo-specific concept
* Replace roots with include/exclude directoriesAleksey Kladov2020-07-212-31/+32
|
* Expose package roots more directlyAleksey Kladov2020-07-213-54/+50
|
* Merge #5467bors[bot]2020-07-212-0/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 5467: Allow null or empty values for configuration r=matklad a=kjeremy Allow the client to respond to `workspace/configuration` with `null` values. This is allowed per the spec if the client doesn't know about the configuration we've requested. This also protects against `null` or `{}` during initialize. I'm not sure if we want to interpret `{}` as "don't change anything" but I think that's a reasonable approach to take. This should help with LSP clients working out of the box. Fixes #5464 Co-authored-by: kjeremy <[email protected]>
| * Protect against `{}`kjeremy2020-07-201-1/+1
| |
| * Allow client to respond to workspace/configuration with null valueskjeremy2020-07-202-0/+7
| | | | | | | | | | This is allowed per the spec if the client doesn't know about the configuration we've requested.
* | Merge #5471bors[bot]2020-07-212-5/+5
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5471: Typo r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | TypoAleksey Kladov2020-07-212-5/+5
| | |
* | | Merge #5470bors[bot]2020-07-212-2/+11
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5470: Propagate cargo.target to checkOnSave r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Propagate cargo.target to checkOnSaveAleksey Kladov2020-07-212-2/+11
| |/
* | Merge #5458bors[bot]2020-07-213-849/+896
|\ \ | |/ |/| | | | | | | | | | | 5458: Use expect in some ra_hir_ty tests r=flodiebold a=lnicola Co-authored-by: LaurenČ›iu Nicola <[email protected]>
| * Inline lang items in coercion testsLaurențiu Nicola2020-07-202-27/+65
| |
| * Use expect in never_type testsLaurențiu Nicola2020-07-203-186/+185
| |
| * Use expect in coercion testsLaurențiu Nicola2020-07-201-674/+684
| |
* | Merge #5440bors[bot]2020-07-207-8/+8
|\ \ | | | | | | | | | | | | | | | | | | | | | 5440: Minor perf tweaks per clippy r=matklad a=kjeremy Co-authored-by: Jeremy Kolb <[email protected]>
| * | Minor perf tweaks per clippyJeremy Kolb2020-07-197-8/+8
| | |
* | | SimplifyAleksey Kladov2020-07-201-9/+5
| | |
* | | Add is_workspace_member for rust-project.jsonAleksey Kladov2020-07-201-24/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is currently unused, but, in the future, it will be used to: * drive certain UX (symbols search by default will look only in the members) * improve performance (rust-analyzer will assume that non-members change rarely) If not specified, is_workspace member is inferred from the path
* | | SimplifyAleksey Kladov2020-07-202-11/+11
| | |
* | | Fix a typo in completion docsPascal Hertleif2020-07-191-1/+1
|/ /
* / Specify default adt representation for chalk integrationWilco Kusee2020-07-191-1/+1
|/
* Simplify exclusion logicAleksey Kladov2020-07-185-110/+120
|
* Don't show docs in concise signature helpAleksey Kladov2020-07-181-5/+9
|
* Add turbo-fish works after `()`Aleksey Kladov2020-07-181-1/+28
|
* Merge #5423bors[bot]2020-07-172-0/+102
|\ | | | | | | | | | | | | | | 5423: Correctly resolve assoc. types in path bindings r=matklad a=jonas-schievink Previously invoking goto def on `impl Iterator<Item<|> = ()>` would go to `Iterator`, not `Item`. This fixes that. Co-authored-by: Jonas Schievink <[email protected]>
| * Correctly resolve assoc. types in path bindingsJonas Schievink2020-07-172-0/+102
| |
* | More precise ranges in remove hashes assistAleksey Kladov2020-07-171-79/+52
| |
* | Remove insta for ra_hir_defAleksey Kladov2020-07-173-164/+169
| |
* | Fix out of bounds panic in active parameterAleksey Kladov2020-07-172-0/+20
|/
* Rewrite def map tests from insta to expectAleksey Kladov2020-07-175-1938/+1821
| | | | Those indentation markers are annoying...
* Move testsAleksey Kladov2020-07-172-74/+71
|
* Merge #5327bors[bot]2020-07-179-0/+20
|\ | | | | | | | | | | | | | | | | | | 5327: Mark fixes from check as preferred r=matklad a=kjeremy This allows us to run the auto fix command from vscode to automatically fix diagnostics in the file. They are also distinguished in the UI. Co-authored-by: Jeremy Kolb <[email protected]>
| * Mark machine applicable fixes as preferredJeremy Kolb2020-07-169-0/+20
| | | | | | | | | | | | | | This allows us to run the auto fix command from vscode to automatically fix all diagnostics in the file. They are also distinguished in the UI.
* | Merge #5417bors[bot]2020-07-175-35/+86
|\ \ | | | | | | | | | | | | | | | | | | | | | 5417: Mismatched arg count works for lambdas r=jonas-schievink a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | Add test for fn pointersAleksey Kladov2020-07-171-0/+15
| | |
| * | call_info works with closuresAleksey Kladov2020-07-174-26/+42
| | |
| * | Mismatched arg count works for lambdasAleksey Kladov2020-07-172-10/+30
| | |
* | | Unclutter NavigationTarget APIAleksey Kladov2020-07-1711-198/+166
| | |
* | | Continue non-doc comments with trailing spaceAleksey Kladov2020-07-172-9/+59
|/ /
* | Remove FunctionSignatureAleksey Kladov2020-07-164-181/+8
| |
* | Inlay hints use callablesAleksey Kladov2020-07-163-140/+35
| |
* | RenameAleksey Kladov2020-07-164-10/+11
| |
* | Don't use function signature for DisplayAleksey Kladov2020-07-164-62/+47
| |
* | Take label offets client capability into accountAleksey Kladov2020-07-163-10/+66
| |
* | Redner self as param for call infor for assoc fn callAleksey Kladov2020-07-162-9/+40
| |
* | Better module structureAleksey Kladov2020-07-164-24/+27
| |
* | Reduce visibilityAleksey Kladov2020-07-166-29/+26
| |
* | Semantical call infoAleksey Kladov2020-07-1612-258/+310
|/
* Merge #4676bors[bot]2020-07-164-9/+29
|\ | | | | | | | | | | | | | | | | | | 4676: proc_macro: fix current nightly/future stable ABI incompatibility r=matklad a=robojumper With rust-lang/rust#72233, the proc_macro ABI has changed, leading to the `test_derive_serialize_proc_macro` test believing that `serde` wants to pass the struct name as a byte string literal instead of a string literal. Fixes #4866. Co-authored-by: robojumper <[email protected]>
| * proc_macro: fix current nightly/future stable ABI incompatibilityrobojumper2020-05-314-9/+29
| |