Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove unused CompletionScore enum | Josh Mcguigan | 2021-03-12 | 3 | -14/+3 |
| | |||||
* | add completion relevance score | Josh Mcguigan | 2021-03-12 | 5 | -37/+82 |
| | |||||
* | Unify naming | Aleksey Kladov | 2021-03-12 | 13 | -103/+90 |
| | |||||
* | use references in CompletionItem's builder | yonip23 | 2021-03-11 | 17 | -166/+183 |
| | |||||
* | fix: add semicolon after type ascription | Conrad Ludgate | 2021-03-11 | 1 | -3/+30 |
| | |||||
* | Return original text range in PrepareRename responses when inside macro | Lukas Wirth | 2021-03-10 | 1 | -7/+47 |
| | |||||
* | Use expect-test for builtin macro/derive tests | Jonas Schievink | 2021-03-10 | 3 | -80/+65 |
| | |||||
* | Merge #7965 | bors[bot] | 2021-03-10 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | 7965: cargo update and lexer r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]> | ||||
| * | cargo update and lexer | kjeremy | 2021-03-10 | 1 | -1/+1 |
| | | |||||
* | | Implement builtin `cfg!` macro | Jonas Schievink | 2021-03-10 | 4 | -2/+19 |
|/ | |||||
* | Merge #7961 | bors[bot] | 2021-03-10 | 1 | -0/+9 |
|\ | | | | | | | | | | | | | | | | | | | 7961: add user docs for ssr assist r=JoshMcguigan a=JoshMcguigan @matklad This is a small follow up on #7874, adding user docs for the SSR assist functionality. Since most other assists aren't handled this way I wasn't sure exactly how we wanted to document this, so feel free to suggest alternatives. Co-authored-by: Josh Mcguigan <[email protected]> | ||||
| * | add user docs for ssr assist | Josh Mcguigan | 2021-03-10 | 1 | -0/+9 |
| | | |||||
* | | Prefer names from outer DefMap over extern prelude | Jonas Schievink | 2021-03-10 | 2 | -5/+40 |
| | | |||||
* | | Merge #7958 | bors[bot] | 2021-03-10 | 4 | -2/+15 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7958: Avoid double text edits when renaming mod declaration r=matklad a=Veykril Closes https://github.com/rust-analyzer/rust-analyzer/issues/7916 See https://github.com/microsoft/vscode-languageserver-node/issues/752 for context Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | | Avoid double text edits when renaming mod declaration | Lukas Wirth | 2021-03-10 | 4 | -2/+15 |
| |/ | |||||
* / | add apply ssr assist | Josh Mcguigan | 2021-03-10 | 4 | -1/+300 |
|/ | |||||
* | Fix labels for single import assists | Kirill Bulatov | 2021-03-10 | 2 | -20/+12 |
| | |||||
* | Stop fetching ItemTrees for no reason | Jonas Schievink | 2021-03-10 | 1 | -14/+1 |
| | |||||
* | Merge #6822 | bors[bot] | 2021-03-09 | 3 | -3/+154 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6822: Read version of rustc that compiled proc macro r=edwin0cheng a=jsomedon Signed-off-by: Jay Somedon <[email protected]> This PR is to fix #6174. I basically * added two methods, `read_version` and `read_section`(used by `read_version`) * two new crates `snap` and `object` to be used by those two methods I just noticed that some part of code were auto-reformatted by rust-analyzer on file save. Does it matter? Co-authored-by: Jay Somedon <[email protected]> Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | use doc-comments | Edwin Cheng | 2021-03-09 | 1 | -21/+22 |
| | | |||||
| * | Print warning if proc-macro built by old rustc | Edwin Cheng | 2021-03-04 | 2 | -73/+148 |
| | | |||||
| * | Revise error message regarding metadata version | Jay Somedon | 2021-03-04 | 1 | -10/+6 |
| | | | | | | | | Co-authored-by: Laurențiu Nicola <[email protected]> | ||||
| * | Update condition check code style | Jay Somedon | 2021-03-04 | 1 | -1/+1 |
| | | | | | | Co-authored-by: Jonas Schievink <[email protected]> | ||||
| * | Update comment | Jay Somedon | 2021-03-04 | 1 | -1/+1 |
| | | | | | | Co-authored-by: Jonas Schievink <[email protected]> | ||||
| * | Fix multiple issues from code review | Jay Somedon | 2021-03-04 | 2 | -15/+30 |
| | | | | | | | | | | | | | | | | * check metadata version * use memmap * use Result instead of unwrap with Jay Somedon <[email protected]> | ||||
| * | Configure object crate's feature | Jay Somedon | 2021-03-04 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Jay Somedon <[email protected]> | ||||
| * | Read version of rustc that compiled proc macro | Jay Somedon | 2021-03-04 | 2 | -10/+74 |
| | | | | | | | | With Jay Somedon <[email protected]> | ||||
* | | Compilation speed | Aleksey Kladov | 2021-03-09 | 10 | -10/+12 |
| | | |||||
* | | Delete `ContainerId` | Jonas Schievink | 2021-03-09 | 11 | -100/+61 |
| | | |||||
* | | Merge #7878 | bors[bot] | 2021-03-09 | 15 | -229/+111 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7878: Remove `item_scope` field from `Body` r=jonas-schievink a=jonas-schievink Closes https://github.com/rust-analyzer/rust-analyzer/issues/7632 Instead of storing an `ItemScope` filled with inner items, we store the list of `BlockId`s for all block expressions that are part of a `Body`. Code can then query the `block_def_map` for those. bors r+ Co-authored-by: Jonas Schievink <[email protected]> Co-authored-by: Jonas Schievink <[email protected]> | ||||
| * | | Stop using `ContainerId` in `AssocContainerId` | Jonas Schievink | 2021-03-09 | 7 | -12/+12 |
| | | | |||||
| * | | Check ancestor maps when computing traits in scope | Jonas Schievink | 2021-03-09 | 2 | -0/+43 |
| | | | |||||
| * | | Remove `item_scope` field from `Body` | Jonas Schievink | 2021-03-09 | 3 | -175/+6 |
| | | | |||||
| * | | Use `body.block_scopes` in `hir_ty` tests | Jonas Schievink | 2021-03-09 | 1 | -6/+14 |
| | | | |||||
| * | | Use `body.block_scopes` to validate inner items | Jonas Schievink | 2021-03-09 | 1 | -3/+8 |
| | | | |||||
| * | | Use `body.block_scopes` in `ChildBySource` | Jonas Schievink | 2021-03-09 | 1 | -1/+5 |
| | | | |||||
| * | | Store inner `BlockId`s in `Body` | Jonas Schievink | 2021-03-09 | 2 | -1/+6 |
| | | | |||||
| * | | Change `ChildBySource` to allow reusing `DynMap` | Jonas Schievink | 2021-03-09 | 2 | -32/+18 |
| | | | |||||
* | | | Merge #7945 | bors[bot] | 2021-03-09 | 4 | -72/+96 |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | 7945: Future proof completion scores r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | Future proof completion scores | Aleksey Kladov | 2021-03-09 | 4 | -72/+96 |
| | | | |||||
* | | | Merge #7942 | bors[bot] | 2021-03-09 | 4 | -33/+48 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7942: Show whether a binding is mutable or not on hover r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | | | Show whether a binding is mutable or not on hover | Lukas Wirth | 2021-03-09 | 3 | -28/+47 |
| | | | | |||||
| * | | | Don't show const items initializer expressions on hover | Lukas Wirth | 2021-03-09 | 1 | -5/+1 |
| | | | | |||||
* | | | | Merge #7944 | bors[bot] | 2021-03-09 | 4 | -45/+103 |
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | | | | | | | | | | | 7944: Selecting `&mut foo` completion now actually inserts `&mut` r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | Selecting `&mut foo` completion now actually inserts `&mut` | Aleksey Kladov | 2021-03-09 | 1 | -15/+16 |
| | | | |||||
| * | | Cleanup auto-ref in completion | Aleksey Kladov | 2021-03-09 | 4 | -30/+87 |
| | | | |||||
* | | | Merge #7941 | bors[bot] | 2021-03-09 | 1 | -14/+7 |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | 7941: Fix unused definitions not being document highlit r=Veykril a=Veykril Fixes #7939 bors r+ Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | | Fix unused definitions not being document highlit | Lukas Wirth | 2021-03-09 | 1 | -14/+7 |
| | | | |||||
* | | | Cleanup | Aleksey Kladov | 2021-03-09 | 1 | -4/+4 |
| | | | |||||
* | | | Cleanup | Aleksey Kladov | 2021-03-09 | 2 | -8/+7 |
| | | |