Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
* | Check for dyn impls in method resolution | Lukas Wirth | 2021-02-08 | 2 | -11/+38 | |
* | Merge #7576 | bors[bot] | 2021-02-05 | 1 | -3/+3 | |
|\ | ||||||
| * | Fix resolveCodeAction trying to edit files before creating them | Lukas Wirth | 2021-02-05 | 1 | -3/+3 | |
* | | Merge #7575 | bors[bot] | 2021-02-05 | 2 | -7/+19 | |
|\ \ | ||||||
| * | | Test `super` resolution too | Jonas Schievink | 2021-02-05 | 1 | -0/+2 | |
| * | | Fix resolution of `self` module within blocks | Jonas Schievink | 2021-02-05 | 2 | -7/+17 | |
|/ / | ||||||
* | | Merge #7572 | bors[bot] | 2021-02-05 | 3 | -29/+30 | |
|\ \ | |/ |/| | ||||||
| * | Add `find_or_create_impl_block` to assist utils | Yoshua Wuyts | 2021-02-05 | 3 | -29/+30 | |
* | | Merge #7573 | bors[bot] | 2021-02-05 | 2 | -3/+3 | |
|\ \ | ||||||
| * | | Do not overwrite lock file | kjeremy | 2021-02-05 | 2 | -3/+3 | |
* | | | Merge #7574 | bors[bot] | 2021-02-05 | 7 | -17/+8 | |
|\ \ \ | |/ / |/| | | ||||||
| * | | Remove redundant clones | Yoshua Wuyts | 2021-02-05 | 7 | -17/+8 | |
| |/ | ||||||
* | | Merge #7505 | bors[bot] | 2021-02-05 | 1 | -1/+1 | |
|\ \ | ||||||
| * | | Increase Highlights highlight range to covering element | Lukas Wirth | 2021-02-04 | 1 | -1/+1 | |
| | | | ||||||
| \ \ | ||||||
*-. \ \ | Merge #7570 #7571 | bors[bot] | 2021-02-05 | 6 | -165/+164 | |
|\ \ \ \ | |_|_|/ |/| | | | ||||||
| | * | | Cleanup decl_check | Lukas Wirth | 2021-02-05 | 4 | -164/+154 | |
| * | | | Add doc gen to the `generate_enum_match_method` assist | Yoshua Wuyts | 2021-02-05 | 2 | -1/+10 | |
* | | | | Merge #7569 | bors[bot] | 2021-02-05 | 1 | -0/+8 | |
|\ \ \ \ | ||||||
| * | | | | Add howtos | Aleksey Kladov | 2021-02-05 | 1 | -0/+8 | |
* | | | | | Merge #7562 | bors[bot] | 2021-02-05 | 5 | -64/+317 | |
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / / | ||||||
| * | | | Move `find_struct_impl` to assist utils | Yoshua Wuyts | 2021-02-05 | 3 | -154/+85 | |
| * | | | add `generate-enum-match` assist | Yoshua Wuyts | 2021-02-05 | 3 | -0/+322 | |
* | | | | Merge #7568 | bors[bot] | 2021-02-05 | 1 | -2/+5 | |
|\ \ \ \ | ||||||
| * | | | | Fix merging of `segment_index` in path resolution | Jonas Schievink | 2021-02-05 | 1 | -2/+5 | |
| | |/ / | |/| | | ||||||
* | | | | Merge #7567 | bors[bot] | 2021-02-05 | 1 | -18/+16 | |
|\ \ \ \ | |/ / / |/| | | | ||||||
| * | | | Remove unnecessary allocs in case_conv | Lukas Wirth | 2021-02-05 | 1 | -18/+16 | |
|/ / / | ||||||
* | | | Merge #7535 | bors[bot] | 2021-02-05 | 4 | -1/+2189 | |
|\ \ \ | |/ / |/| | | ||||||
| * | | allow extracted body to be indented(dedent it) | Vladyslav Katasonov | 2021-02-05 | 1 | -13/+101 | |
| * | | allow transitive `&mut` access for fields in extract_function | Vladyslav Katasonov | 2021-02-05 | 1 | -27/+92 | |
| * | | add tests for extracting if/match/while/for exprs | Vladyslav Katasonov | 2021-02-04 | 1 | -0/+120 | |
| * | | document extract_function assist implementation | Vladyslav Katasonov | 2021-02-04 | 1 | -22/+126 | |
| * | | use `&T` for non copy params of extracted function | Vladyslav Katasonov | 2021-02-04 | 1 | -2/+55 | |
| * | | split extract_function into pieces and order them | Vladyslav Katasonov | 2021-02-04 | 1 | -380/+510 | |
| * | | remove ignored test for downgrading mut to shared | Vladyslav Katasonov | 2021-02-03 | 1 | -30/+0 | |
| * | | allow calling `&mut` methods on outer vars when extracing function | Vladyslav Katasonov | 2021-02-03 | 1 | -0/+116 | |
| * | | allow `&mut param` when extracting function | Vladyslav Katasonov | 2021-02-03 | 1 | -3/+107 | |
| * | | allow modifications of vars from outer scope inside extracted function | Vladyslav Katasonov | 2021-02-03 | 2 | -46/+337 | |
| * | | allow local variables to be used after extracted body | Vladyslav Katasonov | 2021-02-03 | 1 | -41/+183 | |
| * | | change TODO to FIXME | Vladyslav Katasonov | 2021-02-03 | 1 | -2/+2 | |
| * | | disable test for downgrading mutability on extract | Vladyslav Katasonov | 2021-02-03 | 1 | -0/+3 | |
| * | | convert IdentPat to Pat via Into | Vladyslav Katasonov | 2021-02-03 | 1 | -5/+5 | |
| * | | support extracting methods; no mut lowering | Vladyslav Katasonov | 2021-02-03 | 1 | -37/+191 | |
| * | | initial version of extract function assist | Vladyslav Katasonov | 2021-02-03 | 3 | -0/+848 | |
* | | | Merge #7561 | bors[bot] | 2021-02-04 | 3 | -8/+9 | |
|\ \ \ | ||||||
| * | | | Avoid using ModPath's fields directly | Jonas Schievink | 2021-02-04 | 3 | -8/+9 | |
|/ / / | ||||||
* | | | Merge #7559 | bors[bot] | 2021-02-04 | 18 | -51/+70 | |
|\ \ \ | ||||||
| * | | | Make `ModPath`'s representation private | Jonas Schievink | 2021-02-04 | 18 | -51/+70 | |
* | | | | Merge #7558 | bors[bot] | 2021-02-04 | 1 | -2/+2 | |
|\ \ \ \ | |/ / / |/| | | | ||||||
| * | | | Update thread_local | kjeremy | 2021-02-04 | 1 | -2/+2 | |
|/ / / | ||||||
* | | | Merge #7557 | bors[bot] | 2021-02-04 | 4 | -21/+67 | |
|\ \ \ |