aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add missing inlinesAleksey Kladov2021-01-171-0/+3
|
* Merge #7306bors[bot]2021-01-171-1/+1
|\ | | | | | | | | | | | | | | | | 7306: Less annoying `mod` completion r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Less annoying `mod` completionAleksey Kladov2021-01-171-1/+1
|/ | | | | We shouldn't complete optional elements, as deleting stuff is much more annoying than adding it.
* Merge #7305bors[bot]2021-01-177-7/+7
|\ | | | | | | | | | | | | | | | | 7305: :arrow_up: arena r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * :arrow_up: arenaAleksey Kladov2021-01-177-7/+7
|/
* Merge #7275bors[bot]2021-01-176-53/+56
|\ | | | | | | | | | | | | | | | | | | 7275: Make arena index vs ID naming consistent r=matklad a=arzg This makes naming consistent with `la_arena::RawId`. Alternatively, la-arena’s documentation could be updated to use ‘index’ terminology instead of ‘ID’ terminology, and `RawId` renamed to `RawIdx`. This pull request doesn’t compile because dependencies on la-arena go through crates.io, so existing dependencies on the crate are referencing an old version. As such, this PR will only compile once a new la-arena version has been published. Co-authored-by: Aramis Razzaghipour <[email protected]>
| * Use ‘index’ terminology for arena consistentlyAramis Razzaghipour2021-01-176-53/+56
|/
* Merge #7276bors[bot]2021-01-1712-13/+12
|\ | | | | | | | | | | | | | | | | | | | | | | 7276: Remove map module from la-arena public API r=lnicola a=arzg It’s unlikely that more items will be added to the module, so it’s simpler for users if `ArenaMap` is re-exported and the module made private. This doesn’t compile for the same reason that #7275 doesn’t: > This pull request doesn’t compile because dependencies on la-arena go through crates.io, so existing dependencies on the crate are referencing an old version. As such, this PR will only compile once a new la-arena version has been published. Co-authored-by: Aramis Razzaghipour <[email protected]>
| * Remove map module from la-arena public APIAramis Razzaghipour2021-01-1512-13/+12
| | | | | | | | | | | | It’s unlikely that more items will be added to the module, so it’s simpler for users if `ArenaMap` is re-exported and the module made private.
* | Merge #7304bors[bot]2021-01-176-16/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | 7304: Depend on local copy of la-arena instead of crates.io’s r=lnicola a=arzg This addresses [this comment](https://github.com/rust-analyzer/rust-analyzer/pull/7276#issuecomment-760909936). #7275 and #7276 should start compiling if this is merged. Co-authored-by: Aramis Razzaghipour <[email protected]>
| * | Depend on local copy of la-arena instead of crates.io’sAramis Razzaghipour2021-01-176-16/+10
| | |
* | | Merge #7300bors[bot]2021-01-163-9/+27
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7300: When building an item-tree, keep fewer nodes in memory r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | When building an item-tree, keep fewer nodes in memoryAleksey Kladov2021-01-163-9/+27
| | | |
* | | | Merge #7296bors[bot]2021-01-161-2/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7296: Simpler and faster rowan r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Simpler and faster rowanAleksey Kladov2021-01-161-2/+2
|/ / / | | | | | | | | | | | | This removes thread-local syntax node caching, which improves perf a bunch
* | | Merge #7295bors[bot]2021-01-1621-337/+421
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7295: Share import_assets and related entities r=matklad a=SomeoneToIgnore Part of https://github.com/rust-analyzer/rust-analyzer/pull/7293 Addresses https://github.com/rust-analyzer/rust-analyzer/pull/7293#issuecomment-761569558 Prepares `import_assets` and related to be used later for the trait fuzzy importing. Also moves fuzzy imports into a separate completion module and renames them, as suggested in https://github.com/rust-analyzer/rust-analyzer/pull/7293#discussion_r558896685 Co-authored-by: Kirill Bulatov <[email protected]>
| * | | Unindent the testKirill Bulatov2021-01-161-22/+22
| | | |
| * | | Use specific kind for the flyimport completionsKirill Bulatov2021-01-161-5/+10
| | | |
| * | | Share import_assets and related entitiesKirill Bulatov2021-01-1620-332/+411
|/ / /
* | | Merge #7290bors[bot]2021-01-151-0/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7290: Add test mark for skipping single use item in Unmerge use assist r=Veykril a=unexge followup for https://github.com/rust-analyzer/rust-analyzer/pull/7289 Co-authored-by: unexge <[email protected]>
| * | | Add test mark for skipping single use itemunexge2021-01-151-0/+3
| | | |
* | | | Merge #7289bors[bot]2021-01-155-3/+251
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7289: Add Unmerge Use assist r=matklad a=unexge Closes https://github.com/rust-analyzer/rust-analyzer/issues/7185 Co-authored-by: unexge <[email protected]>
| * | | Create new nodes only when applying changesunexge2021-01-151-16/+31
| | | |
| * | | Add Unmerge Use assistunexge2021-01-155-3/+236
|/ / /
* | | Merge #7288bors[bot]2021-01-1542-254/+258
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7288: Handle self/super/crate in PathSegment as NameRef r=matklad a=Veykril Wrapping self/super/crate in NameRef as per https://github.com/rust-analyzer/rust-analyzer/pull/7261#issuecomment-760023172 Co-authored-by: Lukas Wirth <[email protected]>
| * | | Handle self/super/crate in PathSegment as NameRefLukas Wirth2021-01-1542-254/+258
| | | |
* | | | Merge #7287bors[bot]2021-01-152-11/+31
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7287: Make SyntaxPtr lookup logarithmic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Make SyntaxPtr lookup logarithmicAleksey Kladov2021-01-152-11/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closes #3934 cc https://github.com/rust-analyzer/rowan/pull/81
* | | | | Merge #7285bors[bot]2021-01-155-282/+32
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7285: Don't duplicate rustc diagnostics fixes r=matklad a=jonas-schievink Should fix https://github.com/rust-analyzer/rust-analyzer/issues/6851 Co-authored-by: Jonas Schievink <[email protected]>
| * | | | | Don't duplicate rustc diagnostics fixesJonas Schievink2021-01-155-282/+32
| | |/ / / | |/| | |
* | | | | Merge #7286bors[bot]2021-01-159-28/+20
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7286: Remove useless wrapper r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Remove useless wrapperAleksey Kladov2021-01-159-28/+20
| |/ / /
* | | | Merge #7209bors[bot]2021-01-1512-52/+152
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | 7209: Support yield keyword r=Veykril a=sasurau4 Part of #4309 The inference of yield will be implemented at another PR. Co-authored-by: Daiki Ihara <[email protected]>
| * | | Add test for yield_exprDaiki Ihara2021-01-152-0/+32
| | | |
| * | | Add support for yiled keywordDaiki Ihara2021-01-158-27/+95
| | | |
| * | | Upgrade ungrammar to v1.7Daiki Ihara2021-01-152-25/+25
|/ / /
* | | Merge #7281bors[bot]2021-01-152-35/+89
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | 7281: Insert `;` when completing keywords in let r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Insert `;` when completing keywords in letAleksey Kladov2021-01-152-7/+69
| | |
| * | SimplifyAleksey Kladov2021-01-151-27/+19
| | |
| * | Add braces when completing ifsAleksey Kladov2021-01-151-2/+2
|/ /
* | Merge #7272bors[bot]2021-01-1516-267/+240
|\ \ | | | | | | | | | | | | | | | | | | | | | 7272: Group file source edits by FileId r=matklad a=Veykril Co-authored-by: Lukas Wirth <[email protected]>
| * | Phase out SourceFileEdits in favour of a plain HashMapLukas Wirth2021-01-1415-214/+179
| | |
| * | Fix assert_never invoking assert_alwaysLukas Wirth2021-01-141-1/+1
| | |
| * | Group file source edits by FileIdLukas Wirth2021-01-1415-176/+184
| |/
* | Merge #7278bors[bot]2021-01-152-10/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 7278: bump arena r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | bump arenaAleksey Kladov2021-01-151-8/+8
| | |
| * | bump arenaAleksey Kladov2021-01-151-2/+2
|/ /
* | Merge #7274bors[bot]2021-01-153-4/+88
|\ \ | |/ |/| | | | | | | | | | | 7274: Flesh out la-arena crate r=lnicola a=arzg As requested in #7267, I’ve added some basic documentation and added more keys to the crate’s `Cargo.toml`. Co-authored-by: Aramis Razzaghipour <[email protected]>
| * Add more keys to la-arena Cargo.tomlAramis Razzaghipour2021-01-141-0/+3
| |
| * Add docs to la-arena crateAramis Razzaghipour2021-01-143-4/+85
|/