aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixme for union fieldsAleksey Kladov2019-11-252-0/+3
|
* Fix hir for ast::UnionDefAleksey Kladov2019-11-256-18/+17
|
* Merge #2388bors[bot]2019-11-252-2/+8
|\ | | | | | | | | | | | | | | 2388: Show missing struct fields in the error message r=matklad a=Frizi This provides the most interesting information about the "missing structure fields" error directly to the user. Co-authored-by: Frizi <[email protected]>
| * Show missing struct fields in the error messageFrizi2019-11-242-2/+8
| |
* | Use ids for CallableAleksey Kladov2019-11-253-29/+42
| |
* | Use more IDsAleksey Kladov2019-11-251-17/+18
| |
* | Use GenericDefIdMoreAleksey Kladov2019-11-259-55/+43
| |
* | Use GenericDefId moreAleksey Kladov2019-11-255-33/+20
| |
* | Remove Resolver from autoderefAleksey Kladov2019-11-257-49/+73
| | | | | | | | | | Resolver holds onto too much context, including local scopes. Let's try to pass in only what is necessary -- the trait environment.
* | Push resolver upAleksey Kladov2019-11-251-12/+15
| |
* | Switch to variant-granularity field type inferenceAleksey Kladov2019-11-247-34/+59
| |
* | Simplify ADT fieldsAleksey Kladov2019-11-243-22/+11
| |
* | Remove impl_block moduleAleksey Kladov2019-11-244-55/+43
| |
* | SimplifyAleksey Kladov2019-11-247-99/+24
| |
* | Don't redo field resolution in the IDEAleksey Kladov2019-11-244-14/+26
|/
* SimplifyAleksey Kladov2019-11-243-6/+6
|
* Cleanup nameresAleksey Kladov2019-11-241-2/+2
|
* CleanupAleksey Kladov2019-11-241-1/+1
|
* SimplifyAleksey Kladov2019-11-241-1/+3
|
* Switch to StaticLoc for staticsAleksey Kladov2019-11-245-14/+19
|
* Remove ids moduleAleksey Kladov2019-11-246-41/+33
|
* Pull macro upAleksey Kladov2019-11-241-14/+1
|
* Cleanup importsAleksey Kladov2019-11-248-27/+20
|
* Move ModuleSource back to hirAleksey Kladov2019-11-232-4/+65
|
* Privatise nameresAleksey Kladov2019-11-231-1/+1
|
* Rename CrateModuleIdAleksey Kladov2019-11-231-3/+3
|
* Move ImportIdAleksey Kladov2019-11-231-4/+4
|
* Simplify HasSourceAleksey Kladov2019-11-231-21/+18
|
* Hide ImportIdAleksey Kladov2019-11-233-19/+24
|
* Remove unneded supertraitAleksey Kladov2019-11-231-1/+1
|
* Cleanup importsAleksey Kladov2019-11-231-1/+1
|
* Note that debugging infra is brokenAleksey Kladov2019-11-231-0/+2
|
* Get rid of DefDatabase2Aleksey Kladov2019-11-232-5/+3
|
* Move docs to hir_defAleksey Kladov2019-11-236-132/+43
|
* Move lang_items to hir_defAleksey Kladov2019-11-237-199/+45
|
* Use attrs rather than syntax for lang itemsAleksey Kladov2019-11-231-31/+25
|
* Move attrs query to hir_defAleksey Kladov2019-11-236-116/+73
|
* More principled sources for enums and fieldsAleksey Kladov2019-11-222-43/+26
|
* Uniformalize namingAleksey Kladov2019-11-221-1/+1
|
* Expand column!()Jeremy Kolb2019-11-221-0/+19
|
* Merge #2357bors[bot]2019-11-221-0/+19
|\ | | | | | | | | | | | | | | 2357: Expand file! to dummy "" r=edwin0cheng a=kjeremy See https://github.com/rust-analyzer/rust-analyzer/pull/2355#issuecomment-557541873 Co-authored-by: kjeremy <[email protected]>
| * Expand file! to dummy ""kjeremy2019-11-221-0/+19
| |
* | Remove TraitData from APIAleksey Kladov2019-11-222-10/+5
| |
* | Hide data from public APIAleksey Kladov2019-11-223-16/+8
| |
* | Move const&static date to hir_defAleksey Kladov2019-11-225-67/+22
| |
* | Make ImplData's fields publicAleksey Kladov2019-11-223-6/+6
| |
* | Move FunctionData to hir_defAleksey Kladov2019-11-226-100/+31
|/
*-. Merge #2348 #2352bors[bot]2019-11-224-40/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2348: Add support for stringify! builtin macro r=matklad a=piotr-szpetkowski Refs #2212 First time ever contributing here, hopefully it's ok. 2352: Move TypeAlias to hir_def r=matklad a=matklad Co-authored-by: Piotr Szpetkowski <[email protected]> Co-authored-by: Aleksey Kladov <[email protected]>
| | * Move TypeAlias to hir_defAleksey Kladov2019-11-224-40/+4
| |/
* | Merge #2351bors[bot]2019-11-223-16/+15
|\ \ | |/ |/| | | | | | | | | | | 2351: Rename Atts trait r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>