Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add static type inference | Ville Penttinen | 2019-02-25 | 1 | -1/+2 |
| | |||||
* | Add const type inference | Ville Penttinen | 2019-02-25 | 1 | -7/+13 |
| | |||||
* | Rename Type => TypeAlias | Florian Diebold | 2019-02-24 | 1 | -2/+2 |
| | |||||
* | Implement support for type aliases | Florian Diebold | 2019-02-24 | 1 | -1/+3 |
| | |||||
* | Refactor associated method resolution a bit and make it work with generics | Florian Diebold | 2019-02-23 | 1 | -33/+53 |
| | |||||
* | Split ty.rs into several modules | Florian Diebold | 2019-02-23 | 1 | -0/+1079 |
It was just getting too big. We now have: - ty: the `Ty` enum and helpers - ty::infer: actual type inference - ty::lower: lowering from HIR to `Ty` - ty::op: helpers for binary operations, currently |