Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Remove needless lifetime | ivan770 | 2021-03-19 | 1 | -1/+1 | |
| | | ||||||
| * | Added more movable lists | ivan770 | 2021-03-19 | 1 | -1/+95 | |
| | | ||||||
| * | Added arglist mover | ivan770 | 2021-03-19 | 1 | -12/+102 | |
| | | ||||||
| * | Remove prioritization, add more movable items | ivan770 | 2021-03-18 | 1 | -60/+124 | |
| | | ||||||
| * | Fix code after rowan version bump | ivan770 | 2021-03-18 | 1 | -1/+1 | |
| | | ||||||
| * | Remove movable array, improve client code | ivan770 | 2021-03-18 | 1 | -28/+8 | |
| | | ||||||
| * | Item up and down movers | ivan770 | 2021-03-18 | 2 | -0/+402 | |
| | | ||||||
* | | clippy::complexity simplifications related to Iterators | Matthias Krüger | 2021-03-21 | 1 | -4/+3 | |
| | | ||||||
* | | Don't use an untyped String for ActiveParam tracking | Lukas Wirth | 2021-03-20 | 1 | -1/+1 | |
| | | ||||||
* | | Add `AttrsWithOwner` and clean up `source_map` | Jonas Schievink | 2021-03-19 | 1 | -24/+19 | |
| | | ||||||
* | | Move `AttrsOwnerNode` to syntax and make it public | Jonas Schievink | 2021-03-19 | 1 | -31/+1 | |
| | | ||||||
* | | Merge #8097 | bors[bot] | 2021-03-19 | 1 | -2/+3 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 8097: Parse extended_key_value_attributes r=jonas-schievink a=Veykril Companion PR https://github.com/rust-analyzer/ungrammar/pull/31 Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Parse extended_key_value_attributes | Lukas Wirth | 2021-03-19 | 1 | -2/+3 | |
| |/ | ||||||
* | | Use a highlight modifier for intra doc links | Lukas Wirth | 2021-03-18 | 12 | -29/+53 | |
| | | ||||||
* | | Merge #8083 | bors[bot] | 2021-03-18 | 2 | -10/+28 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 8083: Track source file IDs in source mapping of Attrs r=jonas-schievink a=Veykril Fixes the panics/incorrect injection highlighting of outline module declarations until we figure out a nicer source mapping strategy for attributes. Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Track source file IDs in source mapping of Attrs | Lukas Wirth | 2021-03-18 | 2 | -10/+28 | |
| |/ | ||||||
* | | Add test for goto def on proc macro invocation | Jonas Schievink | 2021-03-18 | 1 | -0/+17 | |
| | | ||||||
* | | Store an `AstId` for procedural macros | Jonas Schievink | 2021-03-18 | 2 | -6/+16 | |
|/ | ||||||
* | Semantic highlight intradoclinks in documentation | Lukas Wirth | 2021-03-17 | 14 | -45/+120 | |
| | ||||||
* | Merge #8069 | bors[bot] | 2021-03-17 | 3 | -28/+72 | |
|\ | | | | | | | | | | | | | | | | | 8069: Inject highlight into block doc comments r=Veykril a=Veykril bors r+ Closes https://github.com/rust-analyzer/rust-analyzer/issues/6873 Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Inject highlight into block doc comments | Lukas Wirth | 2021-03-17 | 3 | -28/+72 | |
| | | ||||||
* | | Check whether cursor is on and not between intra doc links in goto_definition | Lukas Wirth | 2021-03-17 | 1 | -8/+14 | |
|/ | ||||||
* | Fix incorrect newline emission in Attrs::docs | Lukas Wirth | 2021-03-17 | 1 | -4/+22 | |
| | ||||||
* | Better handling of block doc comments | Lukas Wirth | 2021-03-17 | 3 | -7/+83 | |
| | ||||||
* | Merge #8059 | bors[bot] | 2021-03-17 | 4 | -17/+154 | |
|\ | | | | | | | | | | | | | | | 8059: Move doc-comment highlight injection from AST to HIR r=matklad,jonas-schievink a=Veykril Fixes #5016 Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Remove quadratic attr source lookup | Lukas Wirth | 2021-03-17 | 1 | -1/+2 | |
| | | ||||||
| * | Properly handle doc attributes in doc-comment highlight injection | Lukas Wirth | 2021-03-16 | 3 | -6/+76 | |
| | | ||||||
| * | Replace trait object boxing with extra AttrsOwnerNode | Lukas Wirth | 2021-03-16 | 1 | -19/+48 | |
| | | ||||||
| * | Move doc-comment highlight injection from AST to HIR | Lukas Wirth | 2021-03-16 | 2 | -15/+52 | |
| | | ||||||
* | | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | 2021-03-17 | 3 | -4/+4 | |
| | | ||||||
* | | avoid converting types into themselves via .into() (clippy::useless-conversion) | Matthias Krüger | 2021-03-17 | 1 | -1/+1 | |
| | | | | | | | | example: let x: String = String::from("hello world").into(); | |||||
* | | Merge #8055 | bors[bot] | 2021-03-16 | 1 | -14/+4 | |
|\ \ | |/ |/| | | | | | | | | | | | 8055: Implement HirDisplay for some more types r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Implement HirDisplay for some more types | Lukas Wirth | 2021-03-16 | 1 | -14/+4 | |
| | | ||||||
* | | Merge #8053 | bors[bot] | 2021-03-16 | 3 | -145/+16 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 8053: Remove ShortLabel r=Veykril a=Veykril Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Remove ShortLabel | Lukas Wirth | 2021-03-16 | 3 | -145/+16 | |
| |/ | ||||||
* | | Merge #8034 | bors[bot] | 2021-03-16 | 1 | -0/+23 | |
|\ \ | |/ |/| | | | | | | | | | | | 8034: Implement Crate::transitive_reverse_dependencies r=matklad a=Veykril changelog internal Implement Crate::transitive_reverse_dependencies Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Add new_source_root meta to test fixtures | Lukas Wirth | 2021-03-16 | 1 | -4/+4 | |
| | | ||||||
| * | Implement Crate::transitive_reverse_dependencies | Lukas Wirth | 2021-03-15 | 1 | -0/+23 | |
| | | ||||||
* | | Merge #7498 | bors[bot] | 2021-03-16 | 14 | -52/+65 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7498: Clone for update r=matklad a=matklad rowan counterpart https://github.com/rust-analyzer/rowan/pull/93 #6857 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | Upgrade rowan | Aleksey Kladov | 2021-03-16 | 14 | -52/+65 | |
| | | | | | | | | | | | | Notably, new rowan comes with support for mutable syntax trees. | |||||
| | | | ||||||
| \ \ | ||||||
*-. \ \ | Merge #7900 #8000 | bors[bot] | 2021-03-16 | 3 | -73/+124 | |
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7900: show function params in completion detail r=matklad a=JoshMcguigan This resolves #7842 by updating the detail for function completions from `-> T` to `fn(T, U) -> V`. I added an expicit unit test for this, `ide_completion::render::fn_detail_includes_args_and_return_type`, which passes. Lots of other unit tests fail (~60 of them) due to this change, although I believe the failures are purely cosmetic (they were testing the exact format of this output). I'm happy to go update those tests, but before I do that I'd like to make sure this is in fact the format we want for the detail? edit - I realized `UPDATE_EXPECT=1 cargo test` automatically updates `expect!` tests. Big :+1: to whoever worked on that! So I'll go ahead and update all these tests soon. But I still would like to confirm `fn(T, U) -> V` is the desired content in the `detail` field. 8000: Use hir formatter for hover text r=matklad a=oxalica Fix #2765 , (should) fix #4665 Co-authored-by: Josh Mcguigan <[email protected]> Co-authored-by: oxalica <[email protected]> | |||||
| | * | | Update tests | oxalica | 2021-03-15 | 1 | -28/+57 | |
| | | | | ||||||
| | * | | Clean usage of ShortLabel | oxalica | 2021-03-15 | 2 | -7/+8 | |
| | | | | ||||||
| | * | | Use hir formatter more | oxalica | 2021-03-15 | 1 | -42/+17 | |
| | | | | ||||||
| | * | | Impl HirDisplay for function hover message | oxalica | 2021-03-15 | 1 | -1/+9 | |
| | | | | ||||||
| | * | | Add test for hover of macro expanded function | oxalica | 2021-03-15 | 1 | -0/+38 | |
| | |/ | ||||||
* | | | Merge #8028 | bors[bot] | 2021-03-15 | 1 | -25/+54 | |
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | 8028: Return multiple modules in `parent_module` feature r=matklad a=Veykril Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Return multiple modules in `parent_module` | Lukas Wirth | 2021-03-15 | 1 | -25/+54 | |
| | | | ||||||
* | | | Merge #8029 | bors[bot] | 2021-03-15 | 1 | -1/+1 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | 8029: Enable thread-local coverage marks r=JoshMcguigan a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]> | |||||
| * | | Enable thread-local coverage marks | Laurențiu Nicola | 2021-03-15 | 1 | -1/+1 | |
| | | |