Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Coerce closures to fn pointers | Florian Diebold | 2019-12-20 | 1 | -0/+4 |
| | | | | E.g. `let x: fn(A) -> B = |x| { y };` | ||||
* | Fix coercion from &Foo to an inference variable in a reference | Florian Diebold | 2019-12-08 | 1 | -1/+5 |
| | | | | We didn't try to unify within the reference, but we should. | ||||
* | Check receiver type properly | Florian Diebold | 2019-12-02 | 1 | -1/+1 |
| | |||||
* | Extract unification code to unify module | Florian Diebold | 2019-12-02 | 1 | -5/+5 |
| | |||||
* | Handle cycles in impl types better | Florian Diebold | 2019-11-30 | 1 | -5/+2 |
| | | | | | | - 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 resolutions | Aleksey Kladov | 2019-11-27 | 1 | -16/+6 |
| | |||||
* | Move Ty | Aleksey Kladov | 2019-11-27 | 1 | -0/+354 |