Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tease apart orthogonal concerns in markdown link rewriting | Aleksey Kladov | 2020-08-26 | 1 | -0/+10 |
| | | | | | | | | | | | | `hir` should know nothing about URLs, markdown and html. It should only be able to: * resolve stringy path from documentation * generate canonical stringy path for a def In contrast, link rewriting should not care about semantics of paths and names resolution, and should be concern only with text mangling bits. | ||||
* | Remove AttrDef | Aleksey Kladov | 2020-08-25 | 1 | -5/+5 |
| | |||||
* | Move attrs from code_module to a separate module | Aleksey Kladov | 2020-08-25 | 1 | -121/+2 |
| | |||||
* | Use the same abstraction for attrs and docs | Aleksey Kladov | 2020-08-25 | 1 | -8/+3 |
| | | | | | Doc comments *are* attributes, so there's no reason to have two crates here. | ||||
* | Changes from review | Zac Pullar-Strecker | 2020-08-25 | 1 | -10/+8 |
| | |||||
* | Renames, comments, and dead code removal | Zac Pullar-Strecker | 2020-08-24 | 1 | -18/+1 |
| | |||||
* | Merge remote-tracking branch 'upstream/master' into 503-hover-doc-links | Zac Pullar-Strecker | 2020-08-24 | 1 | -2/+120 |
| | |||||
* | Better API factoring around self access modes | Aleksey Kladov | 2020-08-19 | 1 | -1/+11 |
| | |||||
* | Introduce hir::Param | Aleksey Kladov | 2020-08-19 | 1 | -2/+11 |
| | | | | | We generally shouldn't expose TypeRef out of hir. So, let's just use a placehoder here. | ||||
* | Add SelfParam to code_model | Aleksey Kladov | 2020-08-19 | 1 | -15/+38 |
| | |||||
* | Mark mutating functions with `mutable` modifier, and owning functions with ↵ | Paul Daniel Faria | 2020-08-16 | 1 | -0/+15 |
| | | | | `consuming`. | ||||
* | Don't expose hir::Path out of hir | Aleksey Kladov | 2020-08-15 | 1 | -6/+3 |
| | | | | | | | | | | | | | | Conjecture: it's impossible to use hir::Path *correctly* from an IDE. I am not entirely sure about this, and we might need to add it back at some point, but I have to arguments that convince me that we probably won't: * `hir::Path` has to know about hygiene, which an IDE can't set up properly. * `hir::Path` lacks identity, but you actually have to know identity to resolve it correctly | ||||
* | Make hygiene private to hir | Aleksey Kladov | 2020-08-13 | 1 | -0/+7 |
| | |||||
* | Rename ra_hir -> hir | Aleksey Kladov | 2020-08-13 | 1 | -0/+1712 |