aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/src/infer/path.rs
Commit message (Collapse)AuthorAgeFilesLines
* Run cargo +nightly fix --clippy -Z unstable-optionsKirill Bulatov2020-02-181-23/+24
|
* FormattingFlorian Diebold2020-02-071-4/+1
|
* Fix another testFlorian Diebold2020-02-071-5/+1
|
* Lower impl trait to variables, move away from using placeholders where they ↵Florian Diebold2020-02-071-38/+17
| | | | don't belong
* Add impl trait lowering modeFlorian Diebold2020-02-071-5/+24
|
* Introduce TyLoweringContextFlorian Diebold2020-02-071-14/+11
|
* Push resolver further upAleksey Kladov2020-01-141-2/+7
|
* Introduce `ContainerId`Aleksey Kladov2019-12-201-1/+1
|
* Rename ContainerId -> AssocContainerIdAleksey Kladov2019-12-201-4/+4
|
* Add body as a possible container for itemsAleksey Kladov2019-12-191-1/+1
|
* Forbid <T>::foo syntax in mod pathsAleksey Kladov2019-12-181-2/+2
|
* Use different types for path with and without genericsAleksey Kladov2019-12-141-12/+13
|
* Fix #2467Florian Diebold2019-12-031-1/+12
| | | | | 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)...
* Refactor a bitFlorian Diebold2019-12-021-35/+3
|
* Extract unification code to unify moduleFlorian Diebold2019-12-021-2/+2
|
* Handle cycles in impl types betterFlorian Diebold2019-11-301-1/+1
| | | | | | - 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
* Memoize impl resolutionsAleksey Kladov2019-11-271-6/+4
|
* Move TyAleksey Kladov2019-11-271-0/+270