Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | Extend analysis-stats a bit | Florian Diebold | 2020-02-15 | 4 | -14/+96 | |
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds some tools helpful when debugging nondeterminism in analysis-stats: - a `--randomize` option that analyses everything in random order - a `-vv` option that prints even more detail Also add a debug log if Chalk fuel is exhausted (which would be a source of nondeterminism, but didn't happen in my tests). I found one source of nondeterminism (rust-lang/chalk#331), but there are still other cases remaining. | |||||
* / / / / / | Remove extra dep | Aleksey Kladov | 2020-02-15 | 1 | -1/+0 | |
|/ / / / / | ||||||
* | | | / | Bump crate resolution limit for large projects | Benjamin Brittain | 2020-02-14 | 1 | -1/+1 | |
| |_|_|/ |/| | | | | | | | | | | | Change-Id: Ie0221e5bcfd1779cd5e241f96b4489e5bd3854c1 | |||||
* | | | | Merge #3147 | bors[bot] | 2020-02-14 | 3 | -0/+42 | |
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | 3147: Check that impl self type matches up with expected self type in path mode r=matklad a=flodiebold Fixes #3144. Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | | Check that impl self type matches up with expected self type in path mode | Florian Diebold | 2020-02-14 | 3 | -0/+42 | |
| | | | | | | | | | | | | | | | | Fixes #3144. | |||||
* | | | | Merge #3145 | bors[bot] | 2020-02-14 | 4 | -9/+78 | |
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | 3145: Make Self implement the trait inside trait default methods r=matklad a=flodiebold Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | | Make Self implement the trait inside trait default methods | Florian Diebold | 2020-02-14 | 4 | -9/+78 | |
| | | | | ||||||
* | | | | Make AtomicX type resolve again | Aleksey Kladov | 2020-02-14 | 1 | -2/+4 | |
|/ / / | ||||||
* | | | Move hir_fmt code to display module | Florian Diebold | 2020-02-14 | 2 | -372/+376 | |
| | | | ||||||
* | | | Rename Ty::Param => Ty::Placeholder | Florian Diebold | 2020-02-14 | 3 | -11/+11 | |
| | | | | | | | | | | | | This aligns more with Chalk. | |||||
* | | | Merge #3120 | bors[bot] | 2020-02-13 | 2 | -45/+545 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3120: Support trait auto import r=matklad a=SomeoneToIgnore Unfortunately, for real cases it does not work as spectacular as in the tests. The main reason for that is type inference: * The callee type [here](https://github.com/rust-analyzer/rust-analyzer/blob/master/crates/ra_hir_ty/src/method_resolution.rs#L369) is unknown for many cases * The trait solution [here](https://github.com/rust-analyzer/rust-analyzer/blob/master/crates/ra_hir_ty/src/method_resolution.rs#L399) is also often ambiguous That results in trait candidates being rejected, and some real cases not supported. Example: no imports for `String::from_str("test")` Co-authored-by: Kirill Bulatov <[email protected]> | |||||
| * | | | Do not collect all traits | Kirill Bulatov | 2020-02-12 | 1 | -102/+53 | |
| | | | | ||||||
| * | | | Support associated consts | Kirill Bulatov | 2020-02-12 | 1 | -18/+133 | |
| | | | | ||||||
| * | | | Also consider associated constants | Kirill Bulatov | 2020-02-12 | 1 | -8/+8 | |
| | | | | ||||||
| * | | | Revert source_analyzer changes | Kirill Bulatov | 2020-02-12 | 2 | -55/+6 | |
| | | | | ||||||
| * | | | Fix post-rebase issues | Kirill Bulatov | 2020-02-12 | 2 | -25/+25 | |
| | | | | ||||||
| * | | | Refactor the code | Kirill Bulatov | 2020-02-12 | 1 | -96/+93 | |
| | | | | ||||||
| * | | | Adjust the assist group name | Kirill Bulatov | 2020-02-12 | 1 | -9/+25 | |
| | | | | ||||||
| * | | | Add profiling | Kirill Bulatov | 2020-02-12 | 1 | -0/+3 | |
| | | | | ||||||
| * | | | Support trait method call autoimports | Kirill Bulatov | 2020-02-12 | 2 | -101/+211 | |
| | | | | ||||||
| * | | | Trait location draft | Kirill Bulatov | 2020-02-12 | 2 | -20/+127 | |
| | | | | ||||||
| * | | | Refactor path for imports extraction | Kirill Bulatov | 2020-02-12 | 1 | -20/+92 | |
| | | | | ||||||
| * | | | Add method tests | Kirill Bulatov | 2020-02-12 | 1 | -3/+116 | |
| | | | | ||||||
| * | | | Resolve methods and functions better | Kirill Bulatov | 2020-02-12 | 2 | -9/+74 | |
| | | | | ||||||
* | | | | Add error context to failures in `ra_project_model` using `anyhow` crate (#3119) | Adam Bratschi-Kaye | 2020-02-13 | 4 | -20/+58 | |
| | | | | | | | | | | | | Add error context to failures in ra_project_model using anyhow crate | |||||
* | | | | prevent "Play" symbol in "Run Test" code lens from rendering as emoji | Quan Luu | 2020-02-13 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Run cargo test | Han Mertens | 2020-02-12 | 1 | -0/+26 | |
| | | | | ||||||
* | | | | Run cargo xtask codegen | Han Mertens | 2020-02-12 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Add test for unnamed argument in function pointer | Han Mertens | 2020-02-12 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | Support unnamed arguments in function pointers | Han Mertens | 2020-02-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Fixes #3089 | |||||
* | | | | Add couple of utility methods | Aleksey Kladov | 2020-02-12 | 1 | -3/+19 | |
| | | | | ||||||
* | | | | Simplify | Aleksey Kladov | 2020-02-12 | 1 | -15/+7 | |
|/ / / | ||||||
* | | | Merge #3121 | bors[bot] | 2020-02-12 | 3 | -7/+49 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3121: Do not add imports before inner attributes r=matklad a=SomeoneToIgnore Current `insert_use_statement` function adds imports before inner attributes which results in compiler errors: <img width="1440" alt="image" src="https://user-images.githubusercontent.com/2690773/74344019-a3749500-4db4-11ea-9d88-f71e903e795a.png"> Co-authored-by: Kirill Bulatov <[email protected]> | |||||
| * | | | Fix the trailing whitespace test | Kirill Bulatov | 2020-02-12 | 1 | -4/+1 | |
| | | | | ||||||
| * | | | Introduce AttrKind | Kirill Bulatov | 2020-02-12 | 3 | -8/+16 | |
| | | | | ||||||
| * | | | Do not add imports before inner attributes | Kirill Bulatov | 2020-02-12 | 2 | -1/+38 | |
| | | | | ||||||
* | | | | Add more hir APIs for associated items | Aleksey Kladov | 2020-02-12 | 2 | -14/+64 | |
|/ / / | ||||||
* | | | Merge #3062 | bors[bot] | 2020-02-11 | 6 | -9/+59 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3062: Implement slice pattern AST > HIR lowering r=jplatte a=jplatte WIP. The necessary changes for parsing are implemented, but actual inference is not yet. Just wanted to upload what I've got so far so it doesn't get duplicated :) Will fix #3043 Co-authored-by: Jonas Platte <[email protected]> | |||||
| * | | | Implement slice pattern AST > HIR lowering | Jonas Platte | 2020-02-11 | 6 | -9/+59 | |
| | | | | ||||||
* | | | | Don't let unknown match arms fall back to ! | Florian Diebold | 2020-02-11 | 2 | -1/+22 | |
| | | | | ||||||
* | | | | Return early, return often | Aleksey Kladov | 2020-02-11 | 1 | -27/+33 | |
| | | | | ||||||
* | | | | Fix join lines when two rules match | Aleksey Kladov | 2020-02-11 | 1 | -23/+46 | |
| | | | | ||||||
* | | | | Merge #3064 | bors[bot] | 2020-02-11 | 2 | -25/+68 | |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3064: Handle macro token cases for rename r=matklad a=edwin0cheng Fixes #2957 Co-authored-by: Edwin Cheng <[email protected]> | |||||
| * | | | | Use get_or_insert_with | Edwin Cheng | 2020-02-09 | 1 | -4/+3 | |
| | | | | | ||||||
| * | | | | Handle macro token cases for rename | Edwin Cheng | 2020-02-09 | 2 | -25/+69 | |
| |/ / / | ||||||
* | | | | Better error messages while deserializing | Aleksey Kladov | 2020-02-11 | 3 | -11/+17 | |
| | | | | ||||||
* | | | | Merge #3074 | bors[bot] | 2020-02-10 | 20 | -112/+420 | |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3074: Or patterns r=matthewjasper a=matthewjasper Works towards #2458 Co-authored-by: Matthew Jasper <[email protected]> | |||||
| * | | | | Address review comments | Matthew Jasper | 2020-02-10 | 3 | -14/+66 | |
| | | | | | ||||||
| * | | | | Update tests for or-patterns | Matthew Jasper | 2020-02-09 | 4 | -60/+184 | |
| | | | | | ||||||
| * | | | | Add or- and parenthesized-patterns | Matthew Jasper | 2020-02-09 | 14 | -45/+177 | |
| | |_|/ | |/| | |