aboutsummaryrefslogtreecommitdiff
path: root/crates/hir/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Shorten type hints for std::iter IteratorsLukas Wirth2020-10-061-1/+1
|
* Move ModPath->ast::Path function to IDE layerAleksey Kladov2020-10-061-5/+2
| | | | closes #6092
* Make ImportPrefix a configuration optionLukas Wirth2020-10-051-0/+1
|
* Tease apart orthogonal concerns in markdown link rewritingAleksey Kladov2020-08-261-3/+1
| | | | | | | | | | | | `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 AttrDefAleksey Kladov2020-08-251-1/+1
|
* Move attrs from code_module to a separate moduleAleksey Kladov2020-08-251-5/+6
|
* Use the same abstraction for attrs and docsAleksey Kladov2020-08-251-1/+1
| | | | | Doc comments *are* attributes, so there's no reason to have two crates here.
* Renames, comments, and dead code removalZac Pullar-Strecker2020-08-241-2/+2
|
* Merge remote-tracking branch 'upstream/master' into 503-hover-doc-linksZac Pullar-Strecker2020-08-241-2/+5
|
* Better API factoring around self access modesAleksey Kladov2020-08-191-1/+1
|
* Add SelfParam to code_modelAleksey Kladov2020-08-191-4/+4
|
* Add new method to Semantics, method_receiver_kind, which returns the kind of ↵Paul Daniel Faria2020-08-161-1/+1
| | | | | | | self The options are Shared, Mutable, Consuming, and Copied. Use this to add proper highlighting to methods based on usage.
* Don't expose hir::Path out of hirAleksey Kladov2020-08-151-2/+5
| | | | | | | | | | | | | | 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 hirAleksey Kladov2020-08-131-2/+6
|
* Rename ra_hir -> hirAleksey Kladov2020-08-131-0/+59