aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Infer type for slice wildcard patternsadamrk2020-06-253-2/+34
| | | |
* | | | SimplifyAleksey Kladov2020-06-252-8/+4
| | | |
* | | | Smarter introduce variableAleksey Kladov2020-06-251-8/+49
| | | | | | | | | | | | | | | | Use field init shorthand
* | | | MinorAleksey Kladov2020-06-254-32/+38
| | | |
* | | | Add new module for project loading stuffAleksey Kladov2020-06-255-238/+260
| | | |
* | | | Prep dynamic workspace loadingAleksey Kladov2020-06-252-96/+79
| | | |
* | | | Separate creation and initialization of global stateAleksey Kladov2020-06-251-56/+65
|/ / /
* | | Simplify diagnostics handlingAleksey Kladov2020-06-253-70/+50
| | |
* | | SimplifyAleksey Kladov2020-06-253-57/+43
| | |
* | | -mMake it harder to accidently early-exit the loopAleksey Kladov2020-06-251-160/+166
| | |
* | | Merge #5064bors[bot]2020-06-257-551/+560
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5064: Add NotificationDispatcher r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Add NotificationDispatcherAleksey Kladov2020-06-253-81/+85
| | | |
| * | | Move request dispatcher to a separate fileAleksey Kladov2020-06-253-129/+146
| | | |
| * | | Refactor main_loopAleksey Kladov2020-06-254-414/+402
| | | |
* | | | Merge #5063bors[bot]2020-06-257-61/+162
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 5063: Store field/variant attrs in ItemTree and use it for adt.rs queries r=jonas-schievink a=jonas-schievink Co-authored-by: Jonas Schievink <[email protected]>
| * | | Use ItemTree to answer enum_data queryJonas Schievink2020-06-251-7/+19
| | | |
| * | | Use IdRange for variantsJonas Schievink2020-06-253-9/+29
| | | |
| * | | Generalize FieldIds -> IdRange<T>Jonas Schievink2020-06-252-13/+14
| | | |
| * | | adt.rs: fetch struct/union data from item treeJonas Schievink2020-06-251-19/+49
| | | |
| * | | Collect field/variant attrs in ItemTreeJonas Schievink2020-06-256-20/+40
| | | |
| * | | Allow iterating fields in the ItemTreeJonas Schievink2020-06-253-10/+28
| | | |
* | | | Move TaskPool into GlobalStateAleksey Kladov2020-06-254-84/+98
| |_|/ |/| |
* | | Better event namingAleksey Kladov2020-06-251-21/+25
| | |
* | | Merge #5056bors[bot]2020-06-252-71/+57
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | 5056: Canonicalize actor API r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Canonicalize actor APIAleksey Kladov2020-06-252-71/+57
| | |
* | | Fix matchig brace for pipesAleksey Kladov2020-06-251-1/+5
|/ /
* | Minor, move codeAleksey Kladov2020-06-252-120/+123
| |
* | Merge #5050bors[bot]2020-06-253-63/+54
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5050: Simplify r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | SimplifyAleksey Kladov2020-06-251-15/+6
| | |
| * | Minor renameAleksey Kladov2020-06-253-49/+49
| | |
* | | Merge #5049bors[bot]2020-06-257-17/+18
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5049: Rename ra_flycheck -> flycheck r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Rename ra_flycheck -> flycheckAleksey Kladov2020-06-257-17/+18
| | |
* | | Merge #5048bors[bot]2020-06-255-50/+66
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 5048: Unify code style for worker threads r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Unify styleAleksey Kladov2020-06-254-19/+19
| | |
| * | Abstract over channelAleksey Kladov2020-06-253-30/+43
| | |
| * | Use Handle/Actor terminology for flycheckAleksey Kladov2020-06-252-13/+16
| | |
* | | matching brace works for | in lambdasAleksey Kladov2020-06-251-5/+22
|/ /
* | Scale progress downAleksey Kladov2020-06-2510-341/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are two reasons why we don't want a generic ra_progress crate just yet: *First*, it introduces a common interface between separate components, and that is usually undesirable (b/c components start to fit the interface, rather than doing what makes most sense for each particular component). *Second*, it introduces a separate async channel for progress, which makes it harder to correlate progress reports with the work done. Ie, when we see 100% progress, it's not blindly obvious that the work has actually finished, we might have some pending messages still.
* | Merge branch 'Veetaha-feat/sync-branch'Aleksey Kladov2020-06-259-30/+286
|\ \
| * | Flatten Task enum ¯\_(ツ)_/¯Veetaha2020-06-181-5/+7
| | |
| * | Migrate flycheck to fully-lsp-compatible progress reports (introduce ↵veetaha2020-06-1813-259/+351
| | | | | | | | | | | | ra_progress crate)
| * | Migrate flycheck to fully-lsp-compatible progress reports (introduce ↵veetaha2020-06-186-101/+225
| | | | | | | | | | | | ra_progress crate)
* | | Tweak visibilityAleksey Kladov2020-06-256-88/+84
| | |
* | | Reduce visibilityAleksey Kladov2020-06-253-40/+29
| | |
* | | Merge LoopState into GlobalStateAleksey Kladov2020-06-252-79/+64
| | |
* | | Flatten module hierarchyAleksey Kladov2020-06-245-49/+50
| | |
* | | Cleanup visibilityAleksey Kladov2020-06-241-18/+18
| | |
* | | Merge #5038bors[bot]2020-06-241-56/+73
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5038: Make `iterate_method_candidates` non-generic r=jonas-schievink a=jonas-schievink Closes https://github.com/rust-analyzer/rust-analyzer/issues/4975 bors r+ :robot: ;) Co-authored-by: Jonas Schievink <[email protected]>
| * | | Make `iterate_method_candidates` non-genericJonas Schievink2020-06-241-56/+73
| | | |
| | | |
| \ \ \
*-. \ \ \ Merge #5035 #5037bors[bot]2020-06-244-22/+13
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5035: Less error-prone naming r=matklad a=matklad bors r+ 🤖 5037: Don't watch dirs if not asked to r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>