Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | internal: count ItemScopes | Aleksey Kladov | 2021-06-22 | 1 | -0/+4 |
| | |||||
* | minor: clarify naming | Aleksey Kladov | 2021-06-22 | 2 | -7/+11 |
| | |||||
* | Apply some clippy suggestions | Clemens Wasser | 2021-06-21 | 9 | -32/+22 |
| | |||||
* | Minor clippy perf fixes | Laurențiu Nicola | 2021-06-18 | 1 | -2/+1 |
| | |||||
* | Nest all the or-patterns! | Lukas Wirth | 2021-06-17 | 4 | -8/+6 |
| | |||||
* | minor: add a test variation | Aleksey Kladov | 2021-06-15 | 1 | -5/+13 |
| | |||||
* | internal: document that we don't #[ignore] tests | Aleksey Kladov | 2021-06-15 | 1 | -8/+13 |
| | |||||
* | internal: more natural order of sources for TypeParam | Aleksey Kladov | 2021-06-14 | 2 | -6/+6 |
| | | | | | We usually use first (left) variant of `Either` for "usual" case, and use right for odd things. For example, pat source is Pat | SelfParam. | ||||
* | Merge #9249 | bors[bot] | 2021-06-13 | 4 | -411/+9 |
|\ | | | | | | | | | | | | | | | | | 9249: internal: remove def-level diagnostics tests r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | internal: remove def-level diagnostics tests | Aleksey Kladov | 2021-06-13 | 2 | -171/+9 |
| | | |||||
| * | internal: refactor macro error | Aleksey Kladov | 2021-06-13 | 3 | -165/+0 |
| | | |||||
| * | internal: refactor inactive code diagnostics | Aleksey Kladov | 2021-06-13 | 2 | -75/+0 |
| | | |||||
* | | Merge #9248 | bors[bot] | 2021-06-13 | 1 | -68/+0 |
|\| | | | | | | | | | | | | | | | | | 9248: internal: refactor unresolved macro call diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | internal: refactor unresolved macro call diagnostic | Aleksey Kladov | 2021-06-13 | 1 | -31/+0 |
| | | |||||
| * | internal: refactor unresolved import diagnostic | Aleksey Kladov | 2021-06-13 | 1 | -37/+0 |
| | | |||||
* | | Merge #9247 | bors[bot] | 2021-06-13 | 1 | -29/+0 |
|\| | | | | | | | | | | | | | | | | | 9247: internal: refactor unresolved extern crate diagnostic r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | internal: refactor unresolved extern crate diagnostic | Aleksey Kladov | 2021-06-13 | 1 | -29/+0 |
| | | |||||
* | | Merge #9245 | bors[bot] | 2021-06-13 | 1 | -14/+0 |
|\| | | | | | | | | | | | | | | | | | 9245: internal: start new diagnostics API r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | internal: start new diagnostics API | Aleksey Kladov | 2021-06-13 | 1 | -14/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At the moment, this moves only a single diagnostic, but the idea is reafactor the rest to use the same pattern. We are going to have a single file per diagnostic. This file will define diagnostics code, rendering range and fixes, if any. It'll also have all of the tests. This is similar to how we deal with assists. After we refactor all diagnostics to follow this pattern, we'll probably move them to a new `ide_diagnostics` crate. Not that we intentionally want to test all diagnostics on this layer, despite the fact that they are generally emitted in the guts on the compiler. Diagnostics care to much about the end presentation details/fixes to be worth-while "unit" testing. So, we'll unit-test only the primary output of compilation process (types and name res tables), and will use integrated UI tests for diagnostics. | ||||
* | | Merge #9244 | bors[bot] | 2021-06-13 | 1 | -0/+16 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | 9244: feat: Make block-local trait impls work r=flodiebold a=flodiebold As long as either the trait or the implementing type are defined in the same block. CC #8961 Co-authored-by: Florian Diebold <[email protected]> | ||||
| * | Make block-local trait impls work | Florian Diebold | 2021-06-13 | 1 | -0/+16 |
| | | | | | | | | | | As long as either the trait or the implementing type are defined in the same block. | ||||
* | | internal: check that coverage marks are always paired | Aleksey Kladov | 2021-06-13 | 1 | -5/+5 |
|/ | |||||
* | cargo fmt | Maan2003 | 2021-06-13 | 1 | -27/+24 |
| | |||||
* | clippy::useless_return | Maan2003 | 2021-06-13 | 1 | -1/+1 |
| | |||||
* | clippy::redundant_closure | Maan2003 | 2021-06-13 | 1 | -2/+2 |
| | |||||
* | clippy::clone_on_copy | Maan2003 | 2021-06-13 | 2 | -2/+2 |
| | |||||
* | clippy::useless_conversion | Maan2003 | 2021-06-13 | 3 | -8/+5 |
| | |||||
* | clippy::redudant_borrow | Maan2003 | 2021-06-13 | 9 | -36/+36 |
| | |||||
* | Don't stringify `cfg_attr`-gated attributes | Jonas Schievink | 2021-06-11 | 1 | -4/+18 |
| | | | | This preserves the assigned `TokenId`s | ||||
* | Reduce fst_path calls | Kirill Bulatov | 2021-06-10 | 1 | -11/+5 |
| | |||||
* | Add more profiling for flyimports | Kirill Bulatov | 2021-06-10 | 3 | -71/+85 |
| | |||||
* | Implement dummy expansions for builtin attributes | Lukas Wirth | 2021-06-09 | 1 | -1/+3 |
| | |||||
* | Merge #9169 | bors[bot] | 2021-06-07 | 4 | -3/+26 |
|\ | | | | | | | | | | | | | | | | | | | 9169: internal: steps towards attribute macro token mapping r=jonas-schievink a=jonas-schievink This doesn't work yet, but we seem to be getting a bit further along (for example, we now stop highlighting `use` items inside item with attribute macros as if they were written verbatim). bors r+ Co-authored-by: Jonas Schievink <[email protected]> | ||||
| * | Handle attribute macros in `descend_into_macros` | Jonas Schievink | 2021-06-06 | 4 | -3/+26 |
| | | |||||
* | | Make Documentation::new non-generic | Laurențiu Nicola | 2021-06-07 | 1 | -2/+2 |
|/ | |||||
* | Render documentation for derive completion | Lukas Wirth | 2021-06-04 | 1 | -0/+4 |
| | |||||
* | Return `ReachedFixedPoint::No` when resolving derive helper | Jonas Schievink | 2021-06-04 | 1 | -0/+1 |
| | |||||
* | Update list of built-in attributes | Jonas Schievink | 2021-06-03 | 1 | -16/+22 |
| | |||||
* | Make it opt-in | Jonas Schievink | 2021-06-03 | 3 | -1/+15 |
| | |||||
* | Expand procedural attribute macros | Jonas Schievink | 2021-06-03 | 2 | -6/+90 |
| | |||||
* | NFC: remove redundant clones (clippy::perf) | Matthias Krüger | 2021-06-03 | 1 | -1/+1 |
| | |||||
* | ItemTree: make variant fields inherit the enum's visibility | Jonas Schievink | 2021-06-03 | 2 | -4/+43 |
| | |||||
* | Add comment | Jonas Schievink | 2021-06-03 | 1 | -0/+3 |
| | |||||
* | Implement `#[rustc_skip_array_during_method_dispatch]` | Jonas Schievink | 2021-06-01 | 1 | -1/+13 |
| | |||||
* | Fall back to legacy prelude | Jonas Schievink | 2021-06-01 | 1 | -14/+27 |
| | |||||
* | Implement per-edition preludes | Jonas Schievink | 2021-06-01 | 4 | -69/+186 |
| | |||||
* | Expand fixme comments | Dawer | 2021-05-31 | 1 | -1/+4 |
| | |||||
* | Clean up, more docs. | Dawer | 2021-05-31 | 1 | -4/+1 |
| | |||||
* | Implement struct ctor application | Dawer | 2021-05-31 | 1 | -1/+1 |
| | |||||
* | Merge #8866 | bors[bot] | 2021-05-31 | 1 | -2/+2 |
|\ | | | | | | | | | | | | | | | 8866: Update salsa r=matklad a=jonas-schievink This updates salsa to include https://github.com/salsa-rs/salsa/pull/265, and removes all cancellation-related code from rust-analyzer Co-authored-by: Jonas Schievink <[email protected]> |