aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Move generic_params query to HIRAleksey Kladov2019-11-204-27/+37
|
* Move constants to new IDAleksey Kladov2019-11-2016-89/+119
| | | | This allows us to get rid of trait item index
* Don't duplicate ContainerId typeAleksey Kladov2019-11-205-42/+35
|
* Switch type aliases to new sourcesAleksey Kladov2019-11-209-73/+162
|
* Merge #2326bors[bot]2019-11-201-132/+0
|\ | | | | | | | | | | | | | | 2326: Remove duplicate tests r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Remove duplicate testsAleksey Kladov2019-11-201-132/+0
| |
* | Fix expand macroEdwin Cheng2019-11-203-9/+16
| |
* | Next gen IDs for functionsAleksey Kladov2019-11-2012-42/+190
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current system with AstIds has two primaraly drawbacks: * It is possible to manufacture IDs out of thin air. For example, it's possible to create IDs for items which are not considered in CrateDefMap due to cfg. Or it is possible to mixup structs and unions, because they share ID space. * Getting the ID of a parent requires a secondary index. Instead, the plan is to pursue the more traditional approach, where each items stores the id of the parent declaration. This makes `FromSource` more awkward, but also more correct: now, to get from an AST to HIR, we first do this recursively for the parent item, and the just search the children of the parent for the matching def
* | Move traits to hir_defAleksey Kladov2019-11-2010-117/+103
|/
* Rename with_ast -> with_valueAleksey Kladov2019-11-208-51/+51
|
* Move Generics to hir_defAleksey Kladov2019-11-206-170/+247
|
* Allow non-path default type parametersAleksey Kladov2019-11-206-19/+38
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-2043-214/+226
|
* Merge pull request #2297 from kiljacken/masterAleksey Kladov2019-11-208-22/+132
|\ | | | | Add fancy truncation of type hints.
| * Add test for inlay hint truncationEmil Lauridsen2019-11-191-0/+37
| |
| * Move type inlay hint truncation to language serverEmil Lauridsen2019-11-198-22/+95
| | | | | | | | | | | | | | | | | | | | | | | | This commit implements a general truncation framework for HirFormatter that keeps track of how much has been output so far. This information can then be used to perform truncation inside the language server, instead of relying on the client. Initial support is implemented for truncating types hints using the maxInlayHintLength server config option. The existing solution in the VSCode extension has been removed in favor of letting the server truncate type hints.
* | :arrow_up: rowanAleksey Kladov2019-11-193-19/+18
| |
* | Add shot doc for expand_macro moduleEdwin Cheng2019-11-191-1/+1
| |
* | Improve insert_whitespacesEdwin Cheng2019-11-191-17/+77
| |
* | Change return type of expand_macroEdwin Cheng2019-11-194-8/+25
| |
* | Change to use Expansion::file_id and reorderingEdwin Cheng2019-11-192-46/+40
| |
* | RebaseEdwin Cheng2019-11-192-3/+9
| |
* | Add recursive expand in vscodeEdwin Cheng2019-11-195-0/+148
| |
* | Fixed a bug for string lit in quoteEdwin Cheng2019-11-191-4/+4
|/
* Merge #2309bors[bot]2019-11-181-7/+29
|\ | | | | | | | | | | | | | | 2309: Goto type def through macros r=matklad a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * Goto type def through macroskjeremy2019-11-181-7/+29
| |
* | Merge #2307bors[bot]2019-11-181-42/+62
|\ \ | | | | | | | | | | | | | | | | | | | | | 2307: Support hover through macro r=matklad a=kjeremy Allows hover to work through macros like `match_ast!`. Co-authored-by: kjeremy <[email protected]>
| * | Fix testkjeremy2019-11-181-10/+6
| | |
| * | Support hover through macrokjeremy2019-11-181-42/+66
| |/
* / Remove the custom impl of AttrsOwner for ImplItemDJMcNab2019-11-183-12/+4
|/ | | | | | The default impl should have the same behaviour, and it can be generated by codegen. See also `ModuleItem` and `NominalDef`
* Use Source<&ast::Name> in classify_namekjeremy2019-11-184-25/+22
|
* Collapse TokenMap and RevTokenMapAleksey Kladov2019-11-184-119/+105
|
* Token-based reverse-mappingAleksey Kladov2019-11-183-38/+52
|
* More sourcesAleksey Kladov2019-11-182-41/+32
|
* Add ra_ide_api::expandAleksey Kladov2019-11-184-55/+69
| | | | | This module should handle all tricky bits with mapping macro-expanded HirFileId to original files the user actually can see in the editor
* More SourceAleksey Kladov2019-11-181-19/+18
|
* Publicise GenericParamsAleksey Kladov2019-11-181-3/+3
| | | | See https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/Exposing.20GenericParam.2Ename
* More correct expansion mappingAleksey Kladov2019-11-174-44/+74
| | | | We can't really map arbitrary ranges, we only can map tokens
* Make shift an implementation detail of mbeAleksey Kladov2019-11-173-47/+84
|
* Merge #2287bors[bot]2019-11-1723-6/+65
|\ | | | | | | | | | | | | | | 2287: Disable doctests r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Disable doctestsAleksey Kladov2019-11-1723-6/+65
| |
* | Don't store shift redundantlyAleksey Kladov2019-11-171-6/+5
|/
* Add bound checkEdwin Cheng2019-11-171-2/+2
|
* Add ast for plain and raw string literalsAleksey Kladov2019-11-163-57/+98
|
* Better factoring of macro expansion machinery in goto defAleksey Kladov2019-11-161-11/+20
|
* Goto definition works inside macrosAleksey Kladov2019-11-164-11/+77
|
* Merge #2276bors[bot]2019-11-165-41/+41
|\ | | | | | | | | | | | | | | 2276: Source-ify name_definition r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Source-ify name_definitionAleksey Kladov2019-11-161-20/+19
| |
| * Sourcify classify_name_refAleksey Kladov2019-11-165-21/+22
| |
* | Upgrade Chalk againFlorian Diebold2019-11-164-27/+37
| |