aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/src/traits/builtin.rs
Commit message (Collapse)AuthorAgeFilesLines
* Introduce our own Chalk TypeFamily, instead of using ChalkIrFlorian Diebold2019-12-221-16/+33
| | | | | | It's not very different, except we can directly use Salsa IDs instead of casting them. This means we need to refactor the handling of errors to get rid of UNKNOWN_TRAIT though.
* Rename N! to name!Florian Diebold2019-12-131-3/+3
|
* Add macros for known names and pathsFlorian Diebold2019-12-131-3/+3
|
* Extract built-in trait implementations to separate moduleFlorian Diebold2019-12-031-0/+161
This untangles the builtin logic from the Chalk translation.