Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Thread varargs through r-a | Jonas Schievink | 2020-07-14 | 1 | -1/+1 |
| | |||||
* | Remove built-in Unsize impls | Florian Diebold | 2020-07-12 | 1 | -197/+4 |
| | | | | They exist in Chalk now. | ||||
* | Make get_fn_trait a method of FnTrait | adamrk | 2020-06-20 | 1 | -17/+7 |
| | |||||
* | Infer FnSig from Fn traits | adamrk | 2020-06-19 | 1 | -1/+5 |
| | |||||
* | Fix some clippy perf warnings | Jeremy Kolb | 2020-05-25 | 1 | -2/+1 |
| | |||||
* | Upgrade Chalk again | Florian Diebold | 2020-04-05 | 1 | -18/+35 |
| | | | | | | | The big change here is counting binders, not variables (https://github.com/rust-lang/chalk/pull/360). We have to adapt to the same scheme for our `Ty::Bound`. It's mostly fine though, even makes some things more clear. | ||||
* | Use `dyn Trait` for working with databse | Aleksey Kladov | 2020-03-16 | 1 | -20/+16 |
| | | | | | | | It improves compile time in `--release` mode quite a bit, it doesn't really slow things down and, conceptually, it seems closer to what we want the physical architecture to look like (we don't want to monomorphise EVERYTHING in a single leaf crate). | ||||
* | Rename ast::ImplBlock -> ast::ImplDef | Aleksey Kladov | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | Shorten some code | Florian Diebold | 2020-02-22 | 1 | -4/+1 |
| | |||||
* | Rework find_super_trait_path to protect against cycles | Florian Diebold | 2020-02-22 | 1 | -4/+2 |
| | |||||
* | Add &dyn Trait -> &dyn SuperTrait coercion, and fix &T -> &dyn Trait | Florian Diebold | 2020-02-22 | 1 | -30/+65 |
| | |||||
* | Implement dyn Trait unsizing as well | Florian Diebold | 2020-02-22 | 1 | -7/+105 |
| | |||||
* | Implement unsize coercion using proper trait solving | Florian Diebold | 2020-02-22 | 1 | -1/+60 |
| | |||||
* | More manual clippy fixes | Kirill Bulatov | 2020-02-18 | 1 | -2/+2 |
| | |||||
* | Run cargo +nightly fix --clippy -Z unstable-options | Kirill Bulatov | 2020-02-18 | 1 | -3/+3 |
| | |||||
* | Introduce our own Chalk TypeFamily, instead of using ChalkIr | Florian Diebold | 2019-12-22 | 1 | -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 Diebold | 2019-12-13 | 1 | -3/+3 |
| | |||||
* | Add macros for known names and paths | Florian Diebold | 2019-12-13 | 1 | -3/+3 |
| | |||||
* | Extract built-in trait implementations to separate module | Florian Diebold | 2019-12-03 | 1 | -0/+161 |
This untangles the builtin logic from the Chalk translation. |