Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Use a highlight modifier for intra doc links | Lukas Wirth | 2021-03-18 | 14 | -31/+55 | |
| | | | ||||||
* | | | Chalkify TraitRef | Florian Diebold | 2021-03-18 | 15 | -73/+99 | |
| | | | ||||||
* | | | Merge #8083 | bors[bot] | 2021-03-18 | 3 | -26/+76 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 3 | -26/+76 | |
| | | | | ||||||
* | | | | Merge #8094 | bors[bot] | 2021-03-18 | 1 | -1/+14 | |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8094: Fix infinite recursion when computing diagnostics for inner items r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]> | |||||
| * | | | | Fix infinite recursion when computing diagnostics for inner items | Jonas Schievink | 2021-03-18 | 1 | -1/+14 | |
| | | | | | ||||||
* | | | | | Add test | Jonas Schievink | 2021-03-18 | 1 | -0/+26 | |
| | | | | | ||||||
* | | | | | Record custom derive helpers in `DefMap` | Jonas Schievink | 2021-03-18 | 3 | -25/+91 | |
|/ / / / | | | | | | | | | | | | | Also clean up proc macro attribute parsing a bit | |||||
* | | | | 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 | 11 | -26/+47 | |
| | | | | ||||||
* | | | | Make MacroDefId's `AstId` mandatory when possible | Jonas Schievink | 2021-03-18 | 13 | -55/+58 | |
| |/ / |/| | | ||||||
* | | | Create AstId for builtin_derive macro in tests | Jonas Schievink | 2021-03-18 | 1 | -13/+28 | |
| | | | ||||||
* | | | Merge #8082 | bors[bot] | 2021-03-18 | 3 | -0/+34 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8082: Proper handle inner recursive macro rules cases r=edwin0cheng a=edwin0cheng Fixes #7645 cc @jonas-schievink bors r+ Co-authored-by: Edwin Cheng <[email protected]> | |||||
| * | | Handle inner recursive macro rules cases | Edwin Cheng | 2021-03-18 | 3 | -0/+34 | |
| | | | ||||||
* | | | Merge #8081 | bors[bot] | 2021-03-18 | 3 | -1959/+1952 | |
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | 8081: Reorganize mbe tests r=edwin0cheng a=edwin0cheng bors r+ Co-authored-by: Edwin Cheng <[email protected]> | |||||
| * | | Reorganize mbe tests | Edwin Cheng | 2021-03-18 | 3 | -1959/+1952 | |
| |/ | ||||||
* | | Rename `item_tree` query to `file_item_tree` | Jonas Schievink | 2021-03-18 | 7 | -16/+16 | |
| | | ||||||
* | | Make `ItemTreeId` its own type | Jonas Schievink | 2021-03-18 | 8 | -37/+77 | |
| | | ||||||
* | | Avoid cloning `CfgOptions` | Jonas Schievink | 2021-03-18 | 1 | -2/+3 | |
| | | ||||||
* | | Support `#[cfg]` on all associated items | Jonas Schievink | 2021-03-18 | 2 | -5/+24 | |
| | | ||||||
* | | Merge #8076 | bors[bot] | 2021-03-17 | 1 | -0/+21 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8076: Add test for self-calling inner function r=jonas-schievink a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/4438 (and duplicates) bors r+ Co-authored-by: Jonas Schievink <[email protected]> | |||||
| * | | Add test for self-calling inner function | Jonas Schievink | 2021-03-17 | 1 | -0/+21 | |
| | | | ||||||
* | | | Merge #8075 | bors[bot] | 2021-03-17 | 2 | -16/+37 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8075: Fix `use crate as <name>;` imports r=jonas-schievink a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/4644 bors r+ Co-authored-by: Jonas Schievink <[email protected]> | |||||
| * | | | Fix `use crate as <name>;` imports | Jonas Schievink | 2021-03-17 | 2 | -16/+37 | |
| |/ / | ||||||
* / / | Improve diagnostic when including nonexistent file | Jonas Schievink | 2021-03-17 | 3 | -12/+13 | |
|/ / | ||||||
* | | Use first early expansion error during nameres | Jonas Schievink | 2021-03-17 | 2 | -1/+20 | |
| | | ||||||
* | | Semantic highlight intradoclinks in documentation | Lukas Wirth | 2021-03-17 | 16 | -55/+132 | |
| | | ||||||
* | | 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 | |
| | | | ||||||
* | | | Improve test | Jonas Schievink | 2021-03-17 | 1 | -0/+21 | |
| | | | ||||||
* | | | Apply `#[cfg]`s when computing function signatures | Jonas Schievink | 2021-03-17 | 2 | -4/+17 | |
| | | | ||||||
* | | | Add test for `#[cfg]` on function params | Jonas Schievink | 2021-03-17 | 1 | -0/+13 | |
| | | | ||||||
* | | | ItemTree: lower attributes on fn parameters | Jonas Schievink | 2021-03-17 | 3 | -23/+54 | |
| | | | ||||||
* | | | Correctly parse attributes on fn parameters | Jonas Schievink | 2021-03-17 | 3 | -56/+71 | |
| | | | ||||||
* | | | Check whether cursor is on and not between intra doc links in goto_definition | Lukas Wirth | 2021-03-17 | 1 | -8/+14 | |
|/ / | ||||||
* | | Merge #8065 | bors[bot] | 2021-03-17 | 10 | -140/+235 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8065: Better handling of block doc comments r=Veykril a=Veykril Moves doc string processing to `Attrs::docs`, as we need the indent info from all comments before being able to know how much to strip Closes #7774 Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Fix incorrect newline emission in Attrs::docs | Lukas Wirth | 2021-03-17 | 4 | -62/+80 | |
| | | | ||||||
| * | | Better handling of block doc comments | Lukas Wirth | 2021-03-17 | 8 | -81/+158 | |
| | | | ||||||
* | | | Handle `#[cfg]` on call arguments | Jonas Schievink | 2021-03-17 | 2 | -11/+39 | |
|/ / | ||||||
* | | Merge #8059 | bors[bot] | 2021-03-17 | 10 | -27/+205 | |
|\ \ | |/ |/| | | | | | | | | | | | 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 | 2 | -1/+27 | |
| | | ||||||
| * | Properly handle doc attributes in doc-comment highlight injection | Lukas Wirth | 2021-03-16 | 5 | -8/+84 | |
| | | ||||||
| * | Fix attribute index assignment in cfg_attr resolution | Lukas Wirth | 2021-03-16 | 1 | -5/+7 | |
| | | ||||||
| * | Replace trait object boxing with extra AttrsOwnerNode | Lukas Wirth | 2021-03-16 | 2 | -20/+49 | |
| | | ||||||
| * | Move doc-comment highlight injection from AST to HIR | Lukas Wirth | 2021-03-16 | 6 | -18/+63 | |
| | | ||||||
* | | Merge #8063 | bors[bot] | 2021-03-17 | 40 | -122/+97 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8063: couple clippy::complexity fixes r=matklad a=matthiaskrgr avoid redundant `.into()` calls to convert T into identical T (`let x: String = String::from("hello").into();`) use `if let Some(x)` instead of `.is_some()` + `.unwrap()` don't clone Copy types remove redundant wrapped ?s: `Some(Some(3)?)` can just be `Some(3)` use `.map(|x| y)` instead of `and_then(|x| Some(y)` on `Option`s Co-authored-by: Matthias Krüger <[email protected]> | |||||
| * | | use simpler .map(|x| y) instead of .and_then(|x| Some(y)) for Options. ↵ | Matthias Krüger | 2021-03-17 | 2 | -24/+14 | |
| | | | | | | | | | | | | (clippy::bind_instead_of_map) | |||||
| * | | remove uselessly wrapped ?s. (clippy::meedless_question_mark | Matthias Krüger | 2021-03-17 | 3 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | let x = Some(3); let y = Some(x?); can just be: let y = x | |||||
| * | | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | 2021-03-17 | 12 | -28/+18 | |
| | | | ||||||
| * | | use if let Some(x) instead of if x.is_some() and x.unwrap() ↵ | Matthias Krüger | 2021-03-17 | 1 | -6/+6 | |
| | | | | | | | | | | | | (clippy::unnecessary-unwrap) |