Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename StructField -> Field | Aleksey Kladov | 2020-04-25 | 2 | -17/+17 |
| | |||||
* | Switch to TryFrom | Aleksey Kladov | 2020-04-25 | 3 | -17/+20 |
| | |||||
* | Cleanups | Aleksey Kladov | 2020-04-25 | 2 | -15/+12 |
| | |||||
* | Convert code to text-size | Aleksey Kladov | 2020-04-25 | 3 | -56/+55 |
| | |||||
* | Remove SyntaxPtr::range from more places | Aleksey Kladov | 2020-04-23 | 1 | -0/+2 |
| | |||||
* | Fix goto definition for record patterns | Aleksey Kladov | 2020-04-18 | 2 | -0/+10 |
| | |||||
* | Don't expose SyntaxNodePtr impl details | Aleksey Kladov | 2020-04-16 | 1 | -1/+3 |
| | |||||
* | Make records grammar more orthogonal | Aleksey Kladov | 2020-04-11 | 1 | -1/+1 |
| | | | | | | | | | | | | We used name [: expr] grammar before, now it is [name :] expr which makes things simpler | ||||
* | Fix unnecessary braces warnings | Laurențiu Nicola | 2020-04-06 | 2 | -9/+9 |
| | |||||
* | Reload only the properties that do not affect vfs | Kirill Bulatov | 2020-03-30 | 1 | -4/+8 |
| | |||||
* | Cleanup memory usage stats | Aleksey Kladov | 2020-03-25 | 1 | -2/+10 |
| | |||||
* | Use visibility_of in search | Edwin Cheng | 2020-03-24 | 1 | -35/+31 |
| | |||||
* | Add ItemScope::visibility_of | Edwin Cheng | 2020-03-24 | 1 | -23/+8 |
| | |||||
* | Use more generic public api | Kirill Bulatov | 2020-03-24 | 2 | -2/+9 |
| | |||||
* | Auto import macros | Kirill Bulatov | 2020-03-24 | 1 | -6/+2 |
| | |||||
* | Merge pull request #3678 from edwin0cheng/refactor-rename | Aleksey Kladov | 2020-03-23 | 1 | -16/+4 |
|\ | | | | | Fix rename argument in macro call | ||||
| * | Refactor search | Edwin Cheng | 2020-03-22 | 1 | -16/+4 |
| | | |||||
* | | Add support for macro in symbo_index | Edwin Cheng | 2020-03-22 | 1 | -0/+7 |
|/ | |||||
* | Use `dyn Trait` for working with databse | Aleksey Kladov | 2020-03-16 | 1 | -1/+14 |
| | | | | | | | It improves compile time in `--release` mode quite a bit, it doesn't really slow things down and, conceptually, it seems closer to what we want the physical architecture to look like (we don't want to monomorphise EVERYTHING in a single leaf crate). | ||||
* | Remove some TextUnit->usize escapees | CAD97 | 2020-03-13 | 2 | -8/+8 |
| | |||||
* | Merge #3549 | bors[bot] | 2020-03-11 | 1 | -0/+7 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3549: Implement env! macro r=matklad a=edwin0cheng This PR implements `env!` macro by adding following things: 1. Added `additional_outdirs` settings in vscode. (naming to be bikeshed) 2. Added `ExternSourceId` which is a wrapping for SourceRootId but only used in extern sources. It is because `OUT_DIR` is not belonged to any crate and we have to access it behind an `AstDatabase`. 3. This PR does not implement the `OUT_DIR` parsing from `cargo check`. I don't have general design about this, @kiljacken could we reuse some cargo watch code for that ? ~~Block on [#3536]~~ PS: After this PR , we (kind of) completed the `include!(concat!(env!('OUT_DIR'), "foo.rs")` macro call combo. [Exodia Obliterate!](https://www.youtube.com/watch?v=RfqNH3FoGi0) Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | Add resolve_extern_path in DB | Edwin Cheng | 2020-03-10 | 1 | -0/+7 |
| | | |||||
* | | Merge #3542 | bors[bot] | 2020-03-11 | 1 | -5/+23 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3542: Renames work on struct field shorthands r=matklad a=m-n When renaming either a local or a struct field, struct field shorthands are now renamed correctly. Happy to refactor this if it doesn't fit the design of the code. Thanks for adding the suggestion of where to start on the issue. I wasn't sure if I should also look at the behavior of renaming when placing the cursor at the field shorthand; the following describes the behavior with this patch: ```rust #[test] fn test_rename_field_shorthand_for_unspecified() { // when renaming a shorthand, should we have a way to specify // between renaming the field and the local? // // If not is this the correct default? test_rename( r#" struct Foo { i: i32, } impl Foo { fn new(i: i32) -> Self { Self { i<|> } } } "#, "j", r#" struct Foo { i: i32, } impl Foo { fn new(j: i32) -> Self { Self { i: j } } } "#, ); } ``` Resolves #3431 Co-authored-by: Matt Niemeir <[email protected]> | ||||
| * | | find_usages limited to actual usages again | Matt Niemeir | 2020-03-11 | 1 | -14/+14 |
| | | | |||||
| * | | Renaming a local renames struct field shorthand | Matt Niemeir | 2020-03-10 | 1 | -9/+15 |
| | | | |||||
| * | | Struct field rename renames field in constructor field shorthand | Matt Niemeir | 2020-03-10 | 1 | -5/+17 |
| | | | |||||
* | | | Move FeatureFlags | Aleksey Kladov | 2020-03-10 | 2 | -84/+3 |
| | | | |||||
* | | | Pull completion options up to the rust-analyzer | Aleksey Kladov | 2020-03-10 | 1 | -0/+4 |
| |/ |/| | |||||
* | | :arrow_up: fst | Aleksey Kladov | 2020-03-10 | 2 | -3/+3 |
|/ | |||||
* | Consider crate declaration names | Kirill Bulatov | 2020-03-08 | 2 | -11/+1 |
| | |||||
* | Show mod path in hover tooltip | Kirill Bulatov | 2020-03-07 | 1 | -0/+4 |
| | |||||
* | Normalize waiting queries names | Aleksey Kladov | 2020-03-06 | 1 | -3/+3 |
| | |||||
* | Don't reuse the Chalk solver | Florian Diebold | 2020-03-06 | 1 | -1/+0 |
| | | | | | This slows down analysis-stats a bit (~5% in my measurement), but improves incremental checking a lot because we can reuse trait solve results. | ||||
* | Don't creat public APIs with typos | Aleksey Kladov | 2020-03-06 | 1 | -1/+1 |
| | |||||
* | Concise mode for parameter hints | Aleksey Kladov | 2020-03-06 | 1 | -0/+1 |
| | | | | | This works around VS Code bug where it tries to cram everything in a tiny popup, and brings experience closer to Intellij. | ||||
* | Feature flag for arg snippets | Aleksey Kladov | 2020-03-06 | 1 | -0/+1 |
| | |||||
* | Fix docs | Aleksey Kladov | 2020-03-04 | 1 | -4/+10 |
| | |||||
* | Cleanup API | Aleksey Kladov | 2020-03-04 | 1 | -47/+47 |
| | |||||
* | Fix tests | Aleksey Kladov | 2020-03-04 | 2 | -1/+3 |
| | |||||
* | Use method instead of a free function | Aleksey Kladov | 2020-03-04 | 1 | -61/+64 |
| | |||||
* | Move find_refs_to_def | Aleksey Kladov | 2020-03-04 | 2 | -3/+147 |
| | |||||
* | Move ReferenceKind | Aleksey Kladov | 2020-03-04 | 1 | -1/+20 |
| | |||||
* | Move SearchScope | Aleksey Kladov | 2020-03-04 | 2 | -0/+148 |
| | |||||
* | Support cross-crate marks | Aleksey Kladov | 2020-03-04 | 4 | -0/+17 |
| | |||||
* | Move reference classification to ra_ide_db | Aleksey Kladov | 2020-03-03 | 1 | -3/+75 |
| | | | | Lost some marks along the way :-( | ||||
* | Rename NameDefinition -> Definition | Aleksey Kladov | 2020-03-03 | 2 | -46/+47 |
| | |||||
* | Refactor reference search a bit | Aleksey Kladov | 2020-03-03 | 1 | -1/+27 |
| | |||||
* | Simplify: remove couple of useless functions | Aleksey Kladov | 2020-03-02 | 1 | -19/+11 |
| | |||||
* | Rename ast::ImplBlock -> ast::ImplDef | Aleksey Kladov | 2020-02-29 | 1 | -2/+2 |
| | |||||
* | Fix highlighting of const patterns | Aleksey Kladov | 2020-02-28 | 1 | -0/+6 |
| |