aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/expr
Commit message (Collapse)AuthorAgeFilesLines
* Flatten expr moduleAleksey Kladov2019-11-151-137/+0
|
* Move scopes to hir_defAleksey Kladov2019-11-141-353/+0
|
* Handle macro-generated expressions slightly less wrongAleksey Kladov2019-11-141-1/+5
|
* Normalize dataAleksey Kladov2019-11-141-14/+9
| | | | No need to store derivable info
* Move expression lowering to hir_defAleksey Kladov2019-11-121-593/+0
|
* Remove owner from BodyAleksey Kladov2019-11-121-4/+2
|
* Move definition of exprs to hir_defAleksey Kladov2019-11-121-67/+15
|
* Minor cleanupAleksey Kladov2019-11-121-1/+1
|
* Add hir::LocalAleksey Kladov2019-11-111-1/+1
|
* Unfork struct and union idsAleksey Kladov2019-11-091-4/+1
|
* Rename MockDatabase -> TestDBAleksey Kladov2019-11-041-3/+3
| | | | Actually working rename is sooo useful!
* Remove more duplication in test fixturesAleksey Kladov2019-11-041-3/+3
|
* Move diagnostics to hir_expandAleksey Kladov2019-11-021-1/+2
|
* move hygiene to hir_expandAleksey Kladov2019-10-301-2/+5
|
* push name down to hir_expandAleksey Kladov2019-10-301-6/+2
|
* refactor $crate handlingAleksey Kladov2019-10-301-1/+3
| | | | | Introduce proper hygiene module, which should grow quite a bit eventually.
* remove forward pointer for type_refAleksey Kladov2019-10-301-1/+1
|
* remove forward pointer to PathAleksey Kladov2019-10-302-3/+5
|
* remove forward pointer for nameAleksey Kladov2019-10-301-2/+2
|
* remove not that useful indirectionAleksey Kladov2019-10-291-1/+1
|
* start ra_hir_def crateAleksey Kladov2019-10-291-6/+5
|
* Added test for check doc strings in crates.Alexander Andreev2019-09-303-0/+6
| | | | #1856
* Support `$crate` in item and expr place.uHOOCCOOHu2019-09-261-7/+14
|
* Define known paths and group namesuHOOCCOOHu2019-09-151-6/+2
|
* Support path starting with a typeuHOOCCOOHu2019-09-151-9/+5
|
* Add `DotDotPat` to ASTDylan MacKenzie2019-09-151-0/+1
| | | | This is modeled on `PlaceholderPat`.
* rename AdtDef -> AdtAleksey Kladov2019-09-121-3/+3
|
* make various enums "inherit" from AdtDefAleksey Kladov2019-09-121-2/+1
|
* start cleaning up the resolutionAleksey Kladov2019-09-121-6/+5
| | | | | | | Nameres related types, like `PerNs<Resolution>`, can represent unreasonable situations, like a local in a type namespace. We should clean this up, by requiring that call-site specifies the kind of resolution it expects.
* Infer box expressionuHOOCCOOHu2019-09-111-0/+4
|
* cleanup hir db importsAleksey Kladov2019-09-083-4/+7
|
* Correctly build BodySourceMap for macro-expanded expressionsAleksey Kladov2019-09-032-32/+31
|
* slightly simplify expr lowering flowAleksey Kladov2019-09-031-126/+102
|
* use recrod terminology for hir::PatAleksey Kladov2019-09-031-4/+3
|
* move expr lowering to lowerAleksey Kladov2019-09-031-0/+653
|
* fix hir for new block syntaxAleksey Kladov2019-09-022-8/+10
|
* Small fixesKirill Bulatov2019-08-261-1/+6
|
* Fix 'missing Ok in tail expr' validationFlorian Diebold2019-08-261-3/+4
| | | | | Because of the coercion change, the type mismatch now only happens on the block expression.
* Simplify checking return type, add new testPhil Ellison2019-08-251-21/+4
|
* Cast SyntaxNodePtr to AstPtr directlyPhil Ellison2019-08-251-14/+3
|
* Remove reliance on expr orderingPhil Ellison2019-08-251-10/+4
|
* cargo formatPhil Ellison2019-08-251-13/+12
|
* Check type rather than just name in ok-wrapping diagnostic. Add test for ↵Phil Ellison2019-08-251-8/+38
| | | | handling generic functions (which currently fails)
* Mock std String and Result types in tests for ok-wrapping diagnosticPhil Ellison2019-08-251-2/+0
|
* Add type_mismatches to InferenceResult and use this in ok-wrapping code fixPhil Ellison2019-08-251-6/+8
|
* Initial implementation of Ok-wrappingPhil Ellison2019-08-251-2/+54
|
* rename struct -> record, pos -> tupleAleksey Kladov2019-08-231-8/+8
|
* rename range -> text_rangeAleksey Kladov2019-07-201-1/+1
|
* migrate ra_hir to the new rowanAleksey Kladov2019-07-192-4/+4
|
* make Parse fields privateAleksey Kladov2019-07-121-1/+2
| | | | this is in preparation for the new rowan API