Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | vscode: updated docs on prebuilt binaries | Veetaha | 2020-02-09 | 1 | -0/+32 |
| | |||||
* | vscode: added logging when donloading binaries | Veetaha | 2020-02-09 | 3 | -5/+26 |
| | |||||
* | vscode: move throtting of download progress to call site | Veetaha | 2020-02-09 | 2 | -16/+19 |
| | |||||
* | vscode: replaced unwrapNotNil() with ! as per @matklad | Veetaha | 2020-02-09 | 3 | -21/+3 |
| | |||||
* | vscode: refactor inverted ternaries to if statements as per @matklad | Veetaha | 2020-02-09 | 2 | -2/+6 |
| | |||||
* | vscode: remove noise data fields declarations as per @matklad | Veetaha | 2020-02-09 | 1 | -6/+1 |
| | |||||
* | vscode: refactor levels of code nesting and string literals quotes | Veetaha | 2020-02-09 | 1 | -26/+30 |
| | |||||
* | vscode: fix chmod to octal literal | Veetaha | 2020-02-09 | 1 | -1/+1 |
| | | | Co-Authored-By: Aleksey Kladov <[email protected]> | ||||
* | vscode: minor names and message contents changes | Veetaha | 2020-02-08 | 2 | -9/+12 |
| | |||||
* | vscode: rename raLspServer variable to langServer | Veetaha | 2020-02-08 | 1 | -3/+3 |
| | |||||
* | vscode: refactor comment | Veetaha | 2020-02-08 | 1 | -1/+1 |
| | |||||
* | vscode: refactor platform artifact name query to switch statement, move ↵ | Veetaha | 2020-02-08 | 4 | -70/+89 |
| | | | | BinarySource union variants into a namespace | ||||
* | vscode: reduce throttle latency of downloadFile() progress callback for ↵ | Veetaha | 2020-02-08 | 1 | -1/+1 |
| | | | | smoother UX | ||||
* | vscode: add name to the second unused argument of withProgress() callback | Veetaha | 2020-02-08 | 1 | -1/+1 |
| | |||||
* | vscode: add docs to installation module interfaces and sanity check to ↵ | Veetaha | 2020-02-08 | 2 | -4/+39 |
| | | | | donloadFile() | ||||
* | vscode: converted fetchLatestArtifactMetadata params to positional, added docs | Veetaha | 2020-02-08 | 1 | -10/+10 |
| | |||||
* | vscode: changed chmod value to 755 as per @lnicola | Veetaha | 2020-02-08 | 1 | -3/+3 |
| | |||||
* | vscode: amended config to use binary from globalStoragePath, added ui for ↵ | Veetaha | 2020-02-08 | 10 | -41/+229 |
| | | | | downloading | ||||
* | added fetchLatestArtifactMetadata() and downloadFile() functions | Veetaha | 2020-02-08 | 4 | -1/+111 |
| | |||||
* | vscode: add FIXME about language client shared resource protection | Veetaha | 2020-02-08 | 1 | -0/+3 |
| | |||||
* | Merge #3049 | bors[bot] | 2020-02-07 | 30 | -109/+97 |
|\ | | | | | | | | | | | | | | | 3049: Introduce assists utils r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Introduce assists utils | Aleksey Kladov | 2020-02-07 | 5 | -26/+32 |
| | | |||||
| * | Name assist handlers | Aleksey Kladov | 2020-02-07 | 29 | -35/+19 |
| | | |||||
| * | Cleanups | Aleksey Kladov | 2020-02-07 | 1 | -2/+5 |
| | | |||||
| * | Cleanup imports | Aleksey Kladov | 2020-02-07 | 1 | -1/+1 |
| | | |||||
| * | Cleanup | Aleksey Kladov | 2020-02-07 | 2 | -4/+11 |
| | | |||||
| * | Cleanup | Aleksey Kladov | 2020-02-07 | 1 | -3/+4 |
| | | |||||
| * | Simplify | Aleksey Kladov | 2020-02-07 | 2 | -42/+29 |
| | | |||||
* | | Merge #3048 | bors[bot] | 2020-02-07 | 7 | -71/+45 |
|\ \ | |/ |/| | | | | | | | | | | | 3048: Remove irrelevant distinction r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Rename | Aleksey Kladov | 2020-02-07 | 6 | -23/+23 |
| | | |||||
| * | Remove irrelevant distinction | Aleksey Kladov | 2020-02-07 | 6 | -48/+22 |
| | | |||||
* | | Merge #3047 | bors[bot] | 2020-02-07 | 5 | -20/+20 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3047: Update async unsafe fn ordering in parser r=matklad a=kiljacken As of rust-lang/rust#61319 the correct order for functions that are both unsafe and async is: `async unsafe fn` and not `unsafe async fn`. This commit updates the parser tests to reflect this, and corrects parsing behavior to accept the correct ordering. Fixes #3025 Co-authored-by: Emil Lauridsen <[email protected]> | ||||
| * | | Update async unsafe fn ordering. | Emil Lauridsen | 2020-02-07 | 5 | -20/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As of rust-lang/rust#61319 the correct order for functions that are both unsafe and async is: `async unsafe fn` and not `unsafe async fn`. This commit updates the parser tests to reflect this, and corrects parsing behavior to accept the correct ordering. Fixes #3025 | ||||
* | | | Merge #3040 | bors[bot] | 2020-02-07 | 19 | -259/+686 |
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3040: Rework value parameter parsing r=matklad a=tobz1000 Fixes #2847. - `Fn__(...)` parameters with idents/patterns no longer parse - Trait function parameters with arbitrary patterns parse - Trait function parameters without idents/patterns no longer parse - `fn(...)` parameters no longer parse with patterns other than a single ident __Question__: The pre-existing test `param_list_opt_patterns` has been kept as-is, although the name no longer makes sense (it's testing `Fn__(...)` params, which aren't allowed patterns any more). What would be best to do about this? Co-authored-by: Toby Dimmick <[email protected]> | ||||
| * | | PR tweaks | Toby Dimmick | 2020-02-07 | 3 | -21/+18 |
| | | | |||||
| * | | Closure params test | Toby Dimmick | 2020-02-06 | 3 | -0/+77 |
| | | | |||||
| * | | rustfmt | Toby Dimmick | 2020-02-06 | 1 | -2/+2 |
| | | | |||||
| * | | Rework value parameter parsing | Toby Dimmick | 2020-02-06 | 17 | -255/+608 |
| | | | | | | | | | | | | | | | | | | | | | - `Fn__(...)` parameters with idents/patterns no longer parse - Trait function parameters with arbitrary patterns parse - Trait function parameters without idents/patterns no longer parse - `fn(...)` parameters no longer parse with patterns other than a single ident | ||||
* | | | Merge #3044 | bors[bot] | 2020-02-07 | 1 | -6/+7 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3044: Don't crash when recieving unkown file for cargo diagnostic. r=matklad a=kiljacken Fixes #3014 Co-authored-by: Emil Lauridsen <[email protected]> | ||||
| * | | | to_string_lossy() -> display() | Emil Lauridsen | 2020-02-07 | 1 | -4/+1 |
| | | | | |||||
| * | | | Don't crash when recieving unkown file for cargo diagnostic. | Emil Lauridsen | 2020-02-07 | 1 | -6/+10 |
| | |/ | |/| | |||||
* | | | Merge #3045 | bors[bot] | 2020-02-07 | 4 | -29/+64 |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | 3045: Cleanup early return assist r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | Cleanup early return assist | Aleksey Kladov | 2020-02-07 | 2 | -11/+29 |
| | | | |||||
| * | | Generalize invert_if to just always work | Aleksey Kladov | 2020-02-07 | 3 | -18/+35 |
|/ / | |||||
* | | Merge #3042 | bors[bot] | 2020-02-06 | 2 | -2/+2 |
|\ \ | |/ |/| | | | | | | | | | | | 3042: A tiny bit more consistent API r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | A tiny bit more consistent API | Aleksey Kladov | 2020-02-06 | 2 | -2/+2 |
|/ | |||||
* | Merge #3038 | bors[bot] | 2020-02-06 | 3 | -9/+11 |
|\ | | | | | | | | | | | | | | | 3038: Minor rename r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | Minor rename | Aleksey Kladov | 2020-02-06 | 3 | -9/+11 |
|/ | |||||
* | Merge #3036 | bors[bot] | 2020-02-06 | 3 | -5/+4 |
|\ | | | | | | | | | | | | | | | | | | | 3036: Remove the leftovers after ImportLocator removal r=matklad a=SomeoneToIgnore Follow the FIXME's suggestion (https://github.com/rust-analyzer/rust-analyzer/pull/3034/files#diff-001b3b1412c33fee802c22b0f848dcd7L237) and remove the `ModuleDefId` reexport. Also rename `ImportsLocatorIde` into plain `ImportsLocator` Co-authored-by: Kirill Bulatov <[email protected]> | ||||
| * | Remove the leftovers after ImportLocator removal | Kirill Bulatov | 2020-02-06 | 3 | -5/+4 |
|/ |