aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Run rustfmt with respect to Cargo.toml editionVincent Rouillé2019-12-044-0/+78
|
* :arrow_up: rowanAleksey Kladov2019-12-043-8/+8
|
* Merge #2471bors[bot]2019-12-032-2/+4
|\ | | | | | | | | | | | | | | 2471: Add `ModuleItemsOwner` to `Block` r=matklad a=ice1000 As title Co-authored-by: ice1000 <[email protected]>
| * Add `ModuleItemsOwner` to `Block`ice10002019-12-032-2/+4
| |
* | Split up ty tests a bitFlorian Diebold2019-12-037-4902/+4882
|/
* Replace `ra_hir_expand::either` with crateice10002019-12-0322-112/+65
|
* Fix #2467Florian Diebold2019-12-034-7/+65
| | | | | The stand-alone `unify` requires that the type doesn't contain any type variables. So we can't share the code here for now (without more refactoring)...
* Merge #2465bors[bot]2019-12-033-127/+219
|\ | | | | | | | | | | | | | | 2465: Extract built-in trait implementations to separate module r=matklad a=flodiebold This untangles the builtin logic from the Chalk translation. Co-authored-by: Florian Diebold <[email protected]>
| * Extract built-in trait implementations to separate moduleFlorian Diebold2019-12-033-127/+219
| | | | | | | | This untangles the builtin logic from the Chalk translation.
* | Make unify pub(crate)Florian Diebold2019-12-031-1/+1
| |
* | Add tests for checking the impl self typeFlorian Diebold2019-12-022-0/+47
| |
* | Refactor a bitFlorian Diebold2019-12-023-77/+74
| |
* | Check receiver type properlyFlorian Diebold2019-12-024-19/+80
| |
* | Extract unification code to unify moduleFlorian Diebold2019-12-026-263/+312
| |
* | Change order of calls to get method candidate order correctFlorian Diebold2019-12-022-39/+115
|/
* Merge #2018bors[bot]2019-12-023-0/+227
|\ | | | | | | | | | | | | | | | | | | 2018: assists: add assist for custom implementation for derived trait r=matklad a=paulolieuthier Please, tell me if something could be more idiomatic or efficient. Fixes #1256. Co-authored-by: Paulo Lieuthier <[email protected]>
| * docs: describe new feature 'add custom impl for derived trait'Paulo Lieuthier2019-11-282-0/+36
| |
| * assists: add assist for custom implementation for derived traitPaulo Lieuthier2019-11-282-0/+191
| |
* | Merge #2455bors[bot]2019-12-017-32/+139
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 2455: Add BuiltinShadowMode r=flodiebold a=edwin0cheng This PR try to fix #1905 by introduce an `BuiltinShadowMode` in name resolving functions. cc @flodiebold Co-authored-by: Edwin Cheng <[email protected]>
| * | Remove some empty linesEdwin Cheng2019-12-011-2/+0
| | |
| * | Use index instead of peekableEdwin Cheng2019-12-011-35/+19
| | |
| * | Fix commentEdwin Cheng2019-12-011-2/+1
| | |
| * | Add BuiltinShadowModeEdwin Cheng2019-11-307-31/+157
| | |
* | | Merge #2451bors[bot]2019-11-306-13/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2451: Use env_logger instead of flexi_logger r=matklad a=AlexanderEkdahl This fixes https://github.com/rust-analyzer/rust-analyzer/issues/2335 - By default only `error` will be printed. From what I can tell this matches the current behaviour. Configured through `RUST_LOG`. - I looked through the optional dependencies for `env_logger`and I have only enabled `human_time`. Without this feature no timestamp will be shown for log messages. - `RA_LOG_DIR` feature is removed This PR adds 2 new dependencies(`env_logger` and `human_time`) and removes 6 dependencies. Co-authored-by: Alexander Ekdahl <[email protected]>
| * | | Remove log dependency from ra_cliAlexander Ekdahl2019-11-301-1/+0
| | | |
| * | | Remove flexi_logger from ra_lsp_serverAlexander Ekdahl2019-11-305-15/+4
| | | |
| * | | Use env_logger in ra_cliAlexander Ekdahl2019-11-302-3/+7
| | |/ | |/|
* | | Add cycle recovery for type aliasesFlorian Diebold2019-11-303-2/+10
| | |
* | | Add cycle recovery for generic predicatesFlorian Diebold2019-11-303-8/+10
| | |
* | | Handle cycles in impl types betterFlorian Diebold2019-11-308-53/+82
| | | | | | | | | | | | | | | | | | - impl Trait<Self> for S is allowed - impl Trait for S<Self> is an invalid cycle, but we can add cycle recovery for it in Salsa now
* | | Merge #2449bors[bot]2019-11-302-3/+51
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2449: Only allow renames to valid identifiers r=matklad a=detrumi Implements #2121 Co-authored-by: Wilco Kusee <[email protected]>
| * | | Push identifier check to rename functionWilco Kusee2019-11-292-9/+9
| | | |
| * | | Test rename for various identifiersWilco Kusee2019-11-291-0/+43
| | | |
| * | | Move identifier check to analysisWilco Kusee2019-11-292-12/+9
| | | |
| * | | Also allow renaming to underscoreWilco Kusee2019-11-291-1/+3
| | | |
| * | | Only allow renames to valid identifiersWilco Kusee2019-11-291-1/+7
| | |/ | |/|
* | | Reduce variants of Exproxalica2019-11-293-77/+56
| | |
* | | Infer range typesoxalica2019-11-287-4/+209
|/ /
* | Move source-related traits to a separate moduleAleksey Kladov2019-11-2810-60/+77
| |
* | Use InFile for AstIdAleksey Kladov2019-11-286-47/+16
| |
* | Rename Source -> InFileAleksey Kladov2019-11-2836-189/+189
| |
* | Derive Hash for TokenTreesEdwin Cheng2019-11-281-8/+8
|/
* Use Name::missing consistentlyAleksey Kladov2019-11-277-52/+33
|
* Minimize APIAleksey Kladov2019-11-272-16/+4
|
* Memoize impl resolutionsAleksey Kladov2019-11-277-75/+76
|
* ReformatAleksey Kladov2019-11-273-10/+7
|
* rename ra_ide_api -> ra_ideAleksey Kladov2019-11-2774-23/+23
|
* Rename module_id -> local_idAleksey Kladov2019-11-2713-47/+47
|
* prune depsAleksey Kladov2019-11-273-31/+12
|
* Move TyAleksey Kladov2019-11-2734-1515/+1600
|