aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/data.rs
Commit message (Collapse)AuthorAgeFilesLines
* Thread varargs through r-aJonas Schievink2020-07-141-0/+2
|
* Switch to fully dynamically dispatched salsaAleksey Kladov2020-07-071-1/+1
| | | | This improves compile times quite a bit
* Collect field/variant attrs in ItemTreeJonas Schievink2020-06-251-2/+2
|
* ItemTree: Use more boxed slicesJonas Schievink2020-06-241-2/+2
|
* Don't allocate common visibilitiesJonas Schievink2020-06-241-4/+4
|
* Address more commentsJonas Schievink2020-06-241-4/+3
|
* Unify and test attribute handlingJonas Schievink2020-06-241-2/+3
|
* Make remaining item data queries use item treeJonas Schievink2020-06-241-122/+42
|
* draw the rest of the owlJonas Schievink2020-06-241-124/+96
|
* Make known paths use `core` instead of `std`Jonas Schievink2020-06-111-1/+1
|
* Add highlight support for unsafe fn calls and raw ptr derefPaul Daniel Faria2020-06-021-1/+5
|
* Highlight mutable statics as mutableMatthew Jasper2020-05-101-5/+26
|
* Rename ImplItem to AssocItemEdwin Cheng2020-05-051-9/+9
|
* refactor: use attrsOwner directly in is_cfg_enabledBenjamin Coenen2020-05-051-2/+1
| | | | Signed-off-by: Benjamin Coenen <[email protected]>
* Fixes names for collect_item funtionsEdwin Cheng2020-05-041-25/+14
|
* Support macro for trait itemsEdwin Cheng2020-05-031-82/+67
|
* Introduce LowerCtx for path loweringEdwin Cheng2020-05-011-8/+13
|
*-. Merge #3966 #3968bors[bot]2020-04-151-4/+14
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3966: Add support for bounds on associated types in trait definitions r=matklad a=flodiebold E.g. ```rust trait Trait { type Item: SomeOtherTrait; } ``` Note that these don't simply desugar to where clauses; as I understand it, where clauses have to be proved by the *user* of the trait, but these bounds are proved by the *implementor*. (Also, where clauses on associated types are unstable.) (Another one from my recursive solver branch...) 3968: Remove format from syntax_bridge hot path r=matklad a=edwin0cheng Although only around 1% speed up by running: ``` Measure-Command {start-process .\target\release\rust-analyzer "analysis-stats -q ." -NoNewWindow -wait} ``` Co-authored-by: Florian Diebold <[email protected]> Co-authored-by: Edwin Cheng <[email protected]>
| * | Add support for bounds on associated types in trait definitionsFlorian Diebold2020-04-131-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | E.g. ``` trait Trait { type Item: SomeOtherTrait; } ``` Note that these don't simply desugar to where clauses; as I understand it, where clauses have to be proved by the *user* of the trait, but these bounds are proved by the *implementor*. (Also, where clauses on associated types are unstable.)
* | | Implement inline associated type boundsFlorian Diebold2020-04-131-2/+6
|/ / | | | | | | | | | | | | Like `Iterator<Item: SomeTrait>`. This is an unstable feature, but it's used in the standard library e.g. in the definition of Flatten, so we can't get away with not implementing it :)
* | Align namingAleksey Kladov2020-04-111-1/+1
| |
* | Use Expander for cfg handling in implsAleksey Kladov2020-04-111-13/+14
| |
* | Pull Expander upAleksey Kladov2020-04-111-5/+5
|/
* Simpler acessors for keywordsAleksey Kladov2020-04-091-2/+2
|
* Merge #3918bors[bot]2020-04-091-9/+5
|\ | | | | | | | | | | | | | | | | 3918: Add support for feature attributes in struct literal r=matklad a=bnjjj As promised here is the next PR to solve 2 different scenarios with feature flag on struct literal. close #3870 Co-authored-by: Benjamin Coenen <[email protected]>
| * feat: add support for feature attributes in struct literalBenjamin Coenen2020-04-091-9/+5
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Be consistent about token accesorsAleksey Kladov2020-04-091-3/+3
|/
* feat: add attributes support on struct fields and method #3870Benjamin Coenen2020-04-081-4/+21
| | | | Signed-off-by: Benjamin Coenen <[email protected]>
* feat: add attributes support on struct fields #3870Benjamin Coenen2020-04-071-1/+5
| | | | Signed-off-by: Benjamin Coenen <[email protected]>
* Use `dyn Trait` for working with databseAleksey Kladov2020-03-161-9/+9
| | | | | | | 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).
* Merge #3591bors[bot]2020-03-151-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 3591: Support local macro_rules r=matklad a=edwin0cheng This PR implement local `macro_rules` in function body, by adding following things: 1. While lowering, add a `MacroDefId` in body's `ItemScope` as a textual legacy macro. 2. Make `Expander::enter_expand` search with given `ItemScope`. 3. Make `Resolver::resolve_path_as_macro` search with `LocalItemScope`. Fix #2181 Co-authored-by: Edwin Cheng <[email protected]>
| * Support local macro_rulesEdwin Cheng2020-03-141-1/+1
| |
* | Fix completion of trait itemsFlorian Diebold2020-03-141-8/+18
|/ | | | Trait items should be public by default.
* Handle visibility for assoc item path completion as wellFlorian Diebold2020-03-081-12/+19
|
* Handle visibility in method call completionFlorian Diebold2020-03-071-3/+9
|
* Add profiling callsAleksey Kladov2020-03-051-0/+2
|
* Rename ast::ImplBlock -> ast::ImplDefAleksey Kladov2020-02-291-3/+3
|
* Remove AsyncOwnerEdwin Cheng2019-12-241-3/+1
|
* FormattingEdwin Cheng2019-12-241-2/+0
|
* Implement infer await from async funcEdwin Cheng2019-12-241-2/+25
|
* Add a limit for protect against infinite recursionEdwin Cheng2019-12-201-2/+10
|
* Recursive collect macros in impl itemsEdwin Cheng2019-12-201-10/+28
|
* Add support macros in impl blocksEdwin Cheng2019-12-201-39/+80
|
* Rename ContainerId -> AssocContainerIdAleksey Kladov2019-12-201-6/+6
|
* Rename N! to name!Florian Diebold2019-12-131-2/+2
|
* Add macros for known names and pathsFlorian Diebold2019-12-131-2/+2
|
* Move traits to the new locAleksey Kladov2019-12-121-3/+3
|
* Switch to the new location for implsAleksey Kladov2019-12-121-1/+1
|
* Move source-related traits to a separate moduleAleksey Kladov2019-11-281-2/+3
|
* Use Name::missing consistentlyAleksey Kladov2019-11-271-5/+6
|