aboutsummaryrefslogtreecommitdiff
path: root/crates/hir/src/semantics.rs
Commit message (Collapse)AuthorAgeFilesLines
* Apply suggestions from code reviewAleksey Kladov2020-09-211-5/+5
| | | Co-authored-by: Laurențiu Nicola <[email protected]>
* Document SemanticScopeAleksey Kladov2020-09-211-0/+19
|
* Rename record_field_pat to record_pat_fieldPavan Kumar Sunkara2020-09-101-4/+4
|
* :arrow_up: ungrammarAleksey Kladov2020-08-211-1/+1
|
* Better API factoring around self access modesAleksey Kladov2020-08-191-44/+2
|
* Add SelfParam to code_modelAleksey Kladov2020-08-191-5/+7
|
* Minor cleanupsAleksey Kladov2020-08-191-7/+6
|
* Add new method to Semantics, method_receiver_kind, which returns the kind of ↵Paul Daniel Faria2020-08-161-2/+44
| | | | | | | self The options are Shared, Mutable, Consuming, and Copied. Use this to add proper highlighting to methods based on usage.
* Mark mutating functions with `mutable` modifier, and owning functions with ↵Paul Daniel Faria2020-08-161-2/+2
| | | | `consuming`.
* Don't expose hir::Path out of hirAleksey Kladov2020-08-151-34/+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
* Rename hypothetical -> speculativeAleksey Kladov2020-08-141-5/+4
|
* Make hygiene private to hirAleksey Kladov2020-08-131-3/+13
|
* Rename ra_hir -> hirAleksey Kladov2020-08-131-0/+840