Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | flatten module structure | Aleksey Kladov | 2019-01-06 | 1 | -1/+1 |
| | |||||
* | split module source into decl/defin | Aleksey Kladov | 2019-01-06 | 1 | -7/+7 |
| | |||||
* | kill old module | Aleksey Kladov | 2019-01-06 | 1 | -11/+13 |
| | |||||
* | Do impl collection per module, not per crate | Florian Diebold | 2019-01-04 | 1 | -27/+25 |
| | |||||
* | Rename ImplBlock::target -> target_type, and add target_trait already | Florian Diebold | 2019-01-04 | 1 | -5/+15 |
| | |||||
* | Add HIR for impl blocks | Florian Diebold | 2019-01-04 | 1 | -0/+172 |
Since we need to be able to go from def to containing impl block, as well as the other direction, and to find all impls for a certain type, a design similar to the one for modules, where we collect all impls for the whole crate and keep them in an arena, seemed fitting. The ImplBlock type, which provides the public interface, then consists only of an Arc to the arena containing all impls, and the index into it. |