aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir
Commit message (Collapse)AuthorAgeFilesLines
* Update authors field in Cargo.tomls to "rust-analyzer developers"Ville Penttinen2019-02-111-1/+1
| | | | This closes #777
* Implement glob imports within the same crateFlorian Diebold2019-02-101-16/+77
| | | | Fixes #231.
* Import glob imports from other cratesFlorian Diebold2019-02-103-2/+17
| | | | This is the easy part since we don't have to consider the fixpoint algorithm.
* Implement glob imports from enumsFlorian Diebold2019-02-102-6/+37
|
* Add some testsFlorian Diebold2019-02-102-0/+120
|
* Spell cases explicitly in Ty::walk{_mut}Florian Diebold2019-02-101-2/+18
|
* Add an ra_cli command that analyses all crates in the current workspaceFlorian Diebold2019-02-103-2/+75
| | | | ... and prints various stats about how many expressions have a type etc.
* Add comment and markFlorian Diebold2019-02-093-2/+10
|
* Fix another crash, and try harder to prevent stack overflowsFlorian Diebold2019-02-093-7/+75
|
* Fix another crash found when analyzing rustcFlorian Diebold2019-02-093-7/+38
|
* Fix handling of literal patternsFlorian Diebold2019-02-093-0/+29
| | | | | Wrap them in a LiteralPat node so they can be distinguished from literal expressions.
* Fix two crashes found by running inference on all of rustcFlorian Diebold2019-02-094-15/+84
|
* 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
|