Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
* | Replace simple is_named with matches macro | Paul Daniel Faria | 2020-06-27 | 1 | -10/+1 | |
| | ||||||
* | Remove comment that's no longer valid | Paul Daniel Faria | 2020-06-26 | 1 | -2/+0 | |
| | ||||||
* | Split glob import map to per-ns, switch ExprCollector to use a simpler push_res | Paul Daniel Faria | 2020-06-26 | 4 | -33/+110 | |
| | ||||||
* | Track import type outside of , use enum rather than bool to improve readability | Paul Daniel Faria | 2020-06-25 | 4 | -40/+73 | |
| | ||||||
* | Revert resolution of all glob imports first, replace with tracking of glob ↵ | Paul Daniel Faria | 2020-06-25 | 4 | -49/+119 | |
| | | | | imports and shadowing when more specific | |||||
* | Order of glob imports should not affect import shadowing | Paul Daniel Faria | 2020-06-25 | 2 | -16/+71 | |
| | ||||||
* | Better event naming | Aleksey Kladov | 2020-06-25 | 1 | -21/+25 | |
| | ||||||
* | Merge #5056 | bors[bot] | 2020-06-25 | 2 | -71/+57 | |
|\ | | | | | | | | | | | | | | | | | | | | | 5056: Canonicalize actor API r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Canonicalize actor API | Aleksey Kladov | 2020-06-25 | 2 | -71/+57 | |
| | | ||||||
* | | Fix matchig brace for pipes | Aleksey Kladov | 2020-06-25 | 1 | -1/+5 | |
|/ | ||||||
* | Minor, move code | Aleksey Kladov | 2020-06-25 | 2 | -120/+123 | |
| | ||||||
* | Merge #5050 | bors[bot] | 2020-06-25 | 3 | -63/+54 | |
|\ | | | | | | | | | | | | | | | | | | | | | 5050: Simplify r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Simplify | Aleksey Kladov | 2020-06-25 | 1 | -15/+6 | |
| | | ||||||
| * | Minor rename | Aleksey Kladov | 2020-06-25 | 3 | -49/+49 | |
| | | ||||||
* | | Merge #5049 | bors[bot] | 2020-06-25 | 7 | -17/+18 | |
|\| | | | | | | | | | | | | | | | | | | | | | 5049: Rename ra_flycheck -> flycheck r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Rename ra_flycheck -> flycheck | Aleksey Kladov | 2020-06-25 | 7 | -17/+18 | |
| | | ||||||
* | | Merge #5048 | bors[bot] | 2020-06-25 | 5 | -50/+66 | |
|\| | | | | | | | | | | | | | | | | | 5048: Unify code style for worker threads r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Unify style | Aleksey Kladov | 2020-06-25 | 4 | -19/+19 | |
| | | ||||||
| * | Abstract over channel | Aleksey Kladov | 2020-06-25 | 3 | -30/+43 | |
| | | ||||||
| * | Use Handle/Actor terminology for flycheck | Aleksey Kladov | 2020-06-25 | 2 | -13/+16 | |
| | | ||||||
* | | matching brace works for | in lambdas | Aleksey Kladov | 2020-06-25 | 1 | -5/+22 | |
|/ | ||||||
* | Scale progress down | Aleksey Kladov | 2020-06-25 | 10 | -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 Kladov | 2020-06-25 | 9 | -30/+286 | |
|\ | ||||||
| * | Flatten Task enum ¯\_(ツ)_/¯ | Veetaha | 2020-06-18 | 1 | -5/+7 | |
| | | ||||||
| * | Migrate flycheck to fully-lsp-compatible progress reports (introduce ↵ | veetaha | 2020-06-18 | 13 | -259/+351 | |
| | | | | | | | | ra_progress crate) | |||||
| * | Migrate flycheck to fully-lsp-compatible progress reports (introduce ↵ | veetaha | 2020-06-18 | 6 | -101/+225 | |
| | | | | | | | | ra_progress crate) | |||||
* | | Tweak visibility | Aleksey Kladov | 2020-06-25 | 6 | -88/+84 | |
| | | ||||||
* | | Reduce visibility | Aleksey Kladov | 2020-06-25 | 3 | -40/+29 | |
| | | ||||||
* | | Merge LoopState into GlobalState | Aleksey Kladov | 2020-06-25 | 2 | -79/+64 | |
| | | ||||||
* | | Flatten module hierarchy | Aleksey Kladov | 2020-06-24 | 5 | -49/+50 | |
| | | ||||||
* | | Cleanup visibility | Aleksey Kladov | 2020-06-24 | 1 | -18/+18 | |
| | | ||||||
* | | Merge #5038 | bors[bot] | 2020-06-24 | 1 | -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-generic | Jonas Schievink | 2020-06-24 | 1 | -56/+73 | |
| | | | ||||||
| | | | ||||||
| \ \ | ||||||
*-. \ \ | Merge #5035 #5037 | bors[bot] | 2020-06-24 | 4 | -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]> | |||||
| | * | | Don't watch dirs if not asked to | Aleksey Kladov | 2020-06-24 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Less error-prone naming | Aleksey Kladov | 2020-06-24 | 4 | -21/+12 | |
| | | | | ||||||
| * | | | Fix infinite cargo check bug | Aleksey Kladov | 2020-06-24 | 1 | -1/+1 | |
| |/ / | ||||||
* | | | Reorder items | Jonas Schievink | 2020-06-24 | 1 | -76/+76 | |
| | | | ||||||
* | | | Clean up and fix inner item collection a bit | Jonas Schievink | 2020-06-24 | 2 | -7/+38 | |
| | | | ||||||
* | | | Use a HashMap instead of Vec | Jonas Schievink | 2020-06-24 | 1 | -8/+9 | |
| | | | | | | | | | | | | | | | This is no longer enforcing stack discipline, so a Vec isn't necessary or helpful | |||||
* | | | Remove unneeded HirFileId argument | Jonas Schievink | 2020-06-24 | 2 | -7/+5 | |
| | | | ||||||
* | | | Shrink arenas after building ItemTree | Jonas Schievink | 2020-06-24 | 2 | -0/+49 | |
| | | | ||||||
* | | | ItemTree: Use more boxed slices | Jonas Schievink | 2020-06-24 | 4 | -15/+22 | |
| | | | ||||||
* | | | Don't allocate empty generics | Jonas Schievink | 2020-06-24 | 4 | -40/+78 | |
| | | | ||||||
* | | | Don't allocate common visibilities | Jonas Schievink | 2020-06-24 | 5 | -75/+142 | |
| | | | ||||||
* | | | Remove file id from item tree | Jonas Schievink | 2020-06-24 | 4 | -34/+28 | |
| | | | | | | | | | | | | It's not needed, and `source` is only used by tests anyways | |||||
* | | | Slightly reduce ItemTree memory footprint | Jonas Schievink | 2020-06-24 | 3 | -53/+68 | |
| | | | ||||||
* | | | Merge item tree traits | Jonas Schievink | 2020-06-24 | 3 | -21/+16 | |
| | | | | | | | | | | | | | | | The Source trait isn't needed anymore since we no longer merge extern crate items with use items. | |||||
* | | | Generate ModItem via macro | Jonas Schievink | 2020-06-24 | 1 | -105/+60 | |
| | | | ||||||
* | | | Address more comments | Jonas Schievink | 2020-06-24 | 2 | -5/+4 | |
| | | |