aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir
Commit message (Collapse)AuthorAgeFilesLines
* reformat the worldAleksey Kladov2019-02-0824-780/+238
|
* Some clippy cleanupskjeremy2019-02-066-12/+12
|
* move assists to a separate crateAleksey Kladov2019-02-062-8/+7
|
* Merge #740bors[bot]2019-02-051-1/+1
|\ | | | | | | | | | | | | | | | | 740: Update dependencies r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]> Co-authored-by: Jeremy Kolb <[email protected]>
| * Bump insta and proptest to latestkjeremy2019-02-041-1/+1
| |
* | Fix ReachedFixedPoint value for unresolved external prelude itemsFlorian Diebold2019-02-041-1/+1
| |
* | Complete extern prelude (again)Florian Diebold2019-02-042-2/+5
| |
* | Make extern crates in the root module add to the extern preludeFlorian Diebold2019-02-044-39/+68
| | | | | | | | To accomplish this, separate the extern prelude from the per-module item maps.
* | Lower extern crates to importsFlorian Diebold2019-02-041-3/+16
| | | | | | | | This is probably not completely correct, but it kind of works.
* | Add test for extern crate renamesFlorian Diebold2019-02-041-0/+42
| |
* | Test more Self inferencekjeremy2019-02-042-3/+13
|/
* make HirDatabase object-safeAleksey Kladov2019-02-032-3/+6
|
* Use aliases in import resolutionFlorian Diebold2019-02-011-9/+12
|
* Pass aliases to ImportDataFlorian Diebold2019-02-012-7/+10
|
* Add test for `use as`Florian Diebold2019-02-011-0/+24
|
* Some cleanup and additional testsFlorian Diebold2019-02-012-6/+18
|
* Make the Resolution variants tuple variantsFlorian Diebold2019-02-014-32/+24
|
* CleanupFlorian Diebold2019-02-014-23/+12
|
* Use the new Resolver API for goto defFlorian Diebold2019-02-014-11/+53
|
* Use the new Resolver API in completionFlorian Diebold2019-02-015-38/+115
|
* Use new Resolver API in type inferenceFlorian Diebold2019-02-0112-250/+295
|
* Implement methods to build a resolverFlorian Diebold2019-02-015-73/+166
|
* Sketching the resolver APIFlorian Diebold2019-02-018-11/+134
|
* split HirDatabase apicsmoe2019-02-0120-105/+145
|
* split hirdatabasecsmoe2019-02-011-20/+26
|
* remove hard-coded support for ctry macroAleksey Kladov2019-02-011-29/+1
| | | | | It was used mainly to prevent HirFileId infra from bitroting, but the `vec![]` macro can serve that just as well!
* Go To Implementation for Traitkjeremy2019-01-312-20/+62
|
* move testAleksey Kladov2019-01-311-114/+0
|
* split macros across cratesAleksey Kladov2019-01-312-2/+2
|
* preserve token spacingAleksey Kladov2019-01-311-15/+29
|
* first test sort-of passesAleksey Kladov2019-01-311-6/+25
|
* move macros to a separate crateAleksey Kladov2019-01-314-299/+2
|
* parses simple macroAleksey Kladov2019-01-313-23/+131
|
* handle multibyte tokensAleksey Kladov2019-01-312-23/+31
|
* add eat methodsAleksey Kladov2019-01-311-6/+23
|
* parsing scaffoldAleksey Kladov2019-01-311-4/+45
|
* debug implsAleksey Kladov2019-01-313-2/+47
|
* add repeats to astAleksey Kladov2019-01-311-0/+12
|
* convert punts and literalsAleksey Kladov2019-01-311-2/+14
|
* start tt convertions boilerplateAleksey Kladov2019-01-312-7/+43
|
* add conversion boilerplateAleksey Kladov2019-01-313-7/+17
|
* add macro by example ideAleksey Kladov2019-01-312-0/+52
|
* shorten name :-)Aleksey Kladov2019-01-312-1/+1
|
* start token tree moduleAleksey Kladov2019-01-312-0/+39
|
* Merge #701bors[bot]2019-01-305-19/+46
|\ | | | | | | | | | | | | | | | | | | 701: Minor type inference tweaks r=flodiebold a=marcusklaas Pass down expectation for reference expressions and type the guard in match expressions. I wasn't able to add a test for the former addition because the type variable previously introduced would always resolve to the right type in the things I tried! Co-authored-by: Marcus Klaas de Vries <[email protected]>
| * Add test for passing on ref expectationsMarcus Klaas de Vries2019-01-303-8/+15
| |
| * Infer type of match guardMarcus Klaas de Vries2019-01-284-15/+35
| |
* | Move expr_scopes query to its moduleFlorian Diebold2019-01-303-11/+17
| |
* | Rename FnScopes -> ExprScopesFlorian Diebold2019-01-308-26/+26
| | | | | | | | | | The reason for this is that it describes scopes for any body expression, not just that of a function. It did not actually refer to functions at all anymore.
* | Use Crate instead of CrateIdAleksey Kladov2019-01-309-45/+36
| |