Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
* | Fix resolution of `crate` paths from within blocks | Jonas Schievink | 2021-02-02 | 2 | -2/+7 |
* | Bump rustc_lexer | Laurențiu Nicola | 2021-02-02 | 1 | -1/+1 |
* | Bump chalk | Laurențiu Nicola | 2021-02-02 | 2 | -5/+5 |
* | Use non-deprecated memmap2 crate | kjeremy | 2021-02-02 | 2 | -2/+2 |
* | Show alias underlying type | lumenian | 2021-02-02 | 1 | -1/+5 |
* | Use the right `DefMap` when looking up modules | Jonas Schievink | 2021-02-02 | 3 | -2/+20 |
* | Revert "Use block_def_map in body lowering" | Jonas Schievink | 2021-02-02 | 10 | -161/+96 |
* | Only allow one proc-macro process | Edwin Cheng | 2021-02-01 | 1 | -14/+16 |
* | Reap proc macro server instances | Laurențiu Nicola | 2021-02-01 | 2 | -8/+4 |
* | Update Test Data | Christopher Serr | 2021-02-01 | 1 | -1/+46 |
* | Don't filter code suggestions on Applicability | Christopher Serr | 2021-02-01 | 1 | -4/+2 |
* | Shortcut `block_def_map` if there's no inner items | Jonas Schievink | 2021-02-01 | 1 | -2/+4 |
* | Use body lowering for block_def_map tests | Jonas Schievink | 2021-02-01 | 3 | -68/+117 |
* | Use block_def_map in body lowering | Jonas Schievink | 2021-02-01 | 6 | -26/+40 |
* | Merge #7503 | bors[bot] | 2021-01-31 | 2 | -1/+25 |
|\ | |||||
| * | Return inner attributes of outline mod declarations in `attrs_query` | Lukas Wirth | 2021-01-31 | 2 | -1/+25 |
* | | Honor #![macro_use] in mod source files | Lukas Wirth | 2021-01-31 | 2 | -8/+23 |
|/ | |||||
* | Merge #7500 | bors[bot] | 2021-01-30 | 1 | -2/+19 |
|\ | |||||
| * | Fix ast::String::value not properly escaping in some cases | Lukas Wirth | 2021-01-30 | 1 | -2/+19 |
* | | Merge #7483 | bors[bot] | 2021-01-30 | 5 | -27/+59 |
|\ \ | |/ |/| | |||||
| * | Prefer ValueNS when resolving hir path for PathExpressions | Lukas Wirth | 2021-01-29 | 1 | -14/+31 |
| * | Classify function calls as functions when shadowed by types | Lukas Wirth | 2021-01-28 | 5 | -16/+31 |
* | | Merge #7494 | bors[bot] | 2021-01-30 | 4 | -74/+71 |
|\ \ | |||||
| * | | Simpilfy mbe parsing | Edwin Cheng | 2021-01-30 | 4 | -74/+71 |
* | | | Add --print-config-schema to help | Laurențiu Nicola | 2021-01-29 | 1 | -0/+2 |
|/ / | |||||
* | | Simplify mbe match error. | Edwin Cheng | 2021-01-29 | 6 | -210/+180 |
* | | Rename mbe_expander for consistency | Edwin Cheng | 2021-01-29 | 4 | -5/+5 |
* | | Forbid flyimport completions in use statements | Kirill Bulatov | 2021-01-28 | 1 | -1/+22 |
* | | Fix incorrect `FileId` and remove broken shortcut | Jonas Schievink | 2021-01-28 | 2 | -16/+9 |
* | | Merge #7482 | bors[bot] | 2021-01-28 | 1 | -0/+63 |
|\ \ | |||||
| * | | block_def_map: add a few macro tests | Jonas Schievink | 2021-01-28 | 1 | -0/+63 |
* | | | Merge #7412 | bors[bot] | 2021-01-28 | 11 | -199/+397 |
|\ \ \ | |/ / |/| | | |||||
| * | | bug fix | Edwin Cheng | 2021-01-28 | 1 | -1/+1 |
| * | | Async Loading outdir and proc-macro | Edwin Cheng | 2021-01-28 | 11 | -199/+397 |
| |/ |