| Commit message (Expand) | Author | Age | Files | Lines |
* | Make type walking infrastructure a bit nicer | Florian Diebold | 2019-09-03 | 1 | -113/+120 |
* | Properly format `impl Trait<Type = Foo>` types | Florian Diebold | 2019-09-03 | 1 | -19/+93 |
* | Add support for associated type bindings (`where Trait<Type = X>`) | Florian Diebold | 2019-09-03 | 1 | -0/+33 |
* | Handle impl/dyn Trait in method resolution | Florian Diebold | 2019-08-22 | 1 | -0/+13 |
* | Add `impl Trait` and `dyn Trait` types | Florian Diebold | 2019-08-22 | 1 | -10/+110 |
* | Improve debug logging a bit | Florian Diebold | 2019-08-12 | 1 | -0/+14 |
* | Add representations of associated types | Florian Diebold | 2019-08-12 | 1 | -0/+86 |
* | provide completion in struct patterns | Ekaterina Babshukova | 2019-07-21 | 1 | -1/+1 |
* | Some renamings for clarity | Florian Diebold | 2019-07-14 | 1 | -1/+1 |
* | Unify `normalize` and `implements` to simplify code | Florian Diebold | 2019-07-08 | 1 | -1/+1 |
* | Refactor a bit & introduce Environment struct | Florian Diebold | 2019-07-08 | 1 | -1/+1 |
* | Add trait obligations for where clauses when calling functions/methods | Florian Diebold | 2019-07-06 | 1 | -2/+2 |
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -5/+8 |
* | Simplifications / cleanup from review | Florian Diebold | 2019-06-16 | 1 | -0/+1 |
* | Somewhat handle variables in the derefed type, and add another test | Florian Diebold | 2019-06-15 | 1 | -0/+11 |
* | Implement autoderef using the Deref trait | Florian Diebold | 2019-06-15 | 1 | -2/+3 |
* | Add basic infrastructure for assoc type projection | Florian Diebold | 2019-06-15 | 1 | -1/+10 |
* | Fix clippy::or_fun_call | Alan Du | 2019-06-04 | 1 | -1/+1 |
* | add union to code_model | Aleksey Kladov | 2019-05-23 | 1 | -0/+1 |
* | profile type inference | Aleksey Kladov | 2019-05-21 | 1 | -1/+1 |
* | Add infer for generic default type | Edwin Cheng | 2019-05-19 | 1 | -1/+1 |
* | Handle where clauses in trait solving | Florian Diebold | 2019-05-11 | 1 | -1/+30 |
* | Add a HirDisplay implementation for TraitRef | Florian Diebold | 2019-05-07 | 1 | -0/+17 |
* | Turn `implements` into a query again | Florian Diebold | 2019-05-07 | 1 | -1/+1 |
* | Differentiate Tuple / FnPtr type constructors by cardinality | Florian Diebold | 2019-05-04 | 1 | -7/+9 |
* | Simplify subst / subst_bound_vars a bit | Florian Diebold | 2019-05-04 | 1 | -12/+2 |
* | Canonicalize before doing method resolution | Florian Diebold | 2019-05-04 | 1 | -0/+11 |
* | Implement Deref<Target=[Ty]> for Substs | Florian Diebold | 2019-05-04 | 1 | -17/+18 |
* | Chalk integration | Florian Diebold | 2019-05-04 | 1 | -1/+48 |
* | Add Ty::Bound variant for use in Chalk integration | Florian Diebold | 2019-05-04 | 1 | -2/+7 |
* | Make callable signature handling a bit nicer | Florian Diebold | 2019-04-14 | 1 | -0/+22 |
* | More trait infrastructure | Florian Diebold | 2019-04-14 | 1 | -0/+11 |
* | Make call info to use real name resolution | Aleksey Kladov | 2019-04-11 | 1 | -2/+12 |
* | Added ArrayExprKind, | Lenard Pratt | 2019-04-07 | 1 | -1/+1 |
* | Added inference of array length | Lenard Pratt | 2019-04-07 | 1 | -1/+5 |
* | Implement a very naive implements check | Florian Diebold | 2019-03-25 | 1 | -4/+19 |
* | Assert in apply_substs that the number of parameters doesn't change | Florian Diebold | 2019-03-21 | 1 | -1/+6 |
* | Rename name field to ctor as well | Florian Diebold | 2019-03-21 | 1 | -14/+14 |
* | Some more doc comments | Florian Diebold | 2019-03-21 | 1 | -2/+12 |
* | TypeName => TypeCtor | Florian Diebold | 2019-03-21 | 1 | -24/+24 |
* | Remove the old variants replaced by Ty::Apply | Florian Diebold | 2019-03-21 | 1 | -197/+41 |
* | Add Ty::Apply | Florian Diebold | 2019-03-21 | 1 | -1/+177 |
* | Represent FnPtr and Tuple using Substs | Florian Diebold | 2019-03-21 | 1 | -15/+19 |
* | Remove FnSig from FnDef type | Florian Diebold | 2019-03-16 | 1 | -12/+6 |
* | Refactor FnSig a bit | Florian Diebold | 2019-03-16 | 1 | -34/+47 |
* | Some more Ty displaying cleanup | Florian Diebold | 2019-03-16 | 1 | -2/+2 |
* | Replace Display by a pretty printing trait for Ty | Florian Diebold | 2019-03-16 | 1 | -34/+60 |
* | Represent unknown types as {unknown} instead of [unknown] | Florian Diebold | 2019-03-03 | 1 | -1/+1 |
* | A bit of cleanup in ty.rs | Florian Diebold | 2019-03-02 | 1 | -28/+1 |
* | Split ty.rs into several modules | Florian Diebold | 2019-02-23 | 1 | -1450/+18 |