aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2297 from kiljacken/masterAleksey Kladov2019-11-202-17/+67
|\ | | | | 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-192-17/+30
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | 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-192-5/+12
| |
* | Change to use Expansion::file_id and reorderingEdwin Cheng2019-11-191-40/+39
| |
* | RebaseEdwin Cheng2019-11-191-3/+4
| |
* | Add recursive expand in vscodeEdwin Cheng2019-11-192-0/+117
|/
* 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
| |
* | Fix testkjeremy2019-11-181-10/+6
| |
* | Support hover through macrokjeremy2019-11-181-42/+66
|/
* Use Source<&ast::Name> in classify_namekjeremy2019-11-184-25/+22
|
* Token-based reverse-mappingAleksey Kladov2019-11-181-8/+25
|
* 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
|
* More correct expansion mappingAleksey Kladov2019-11-171-22/+26
| | | | We can't really map arbitrary ranges, we only can map tokens
* Disable doctestsAleksey Kladov2019-11-171-0/+3
|
* Better factoring of macro expansion machinery in goto defAleksey Kladov2019-11-161-11/+20
|
* Goto definition works inside macrosAleksey Kladov2019-11-161-10/+40
|
* Source-ify name_definitionAleksey Kladov2019-11-161-20/+19
|
* Sourcify classify_name_refAleksey Kladov2019-11-165-21/+22
|
* Merge #2271bors[bot]2019-11-156-12/+17
|\ | | | | | | | | | | | | | | 2271: Force passing Source when creating a SourceAnalyzer r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Force passing Source when creating a SourceAnalyzerAleksey Kladov2019-11-156-12/+17
| |
* | Add a test that uses classify_namekjeremy2019-11-151-0/+15
| |
* | Handle ast::MacroCall in classify_name and impl FromSource for MacroDefkjeremy2019-11-151-1/+13
|/ | | | Fixes #2260
* Sourcify some thingsAleksey Kladov2019-11-152-4/+4
| | | | | If we want to support macros properly, we need to get rid of those FileIds everywhere...
* Remove old impls infrastructureAleksey Kladov2019-11-152-12/+8
|
* Auto-upgrade some insta snapshotsAleksey Kladov2019-11-1516-1547/+1638
|
* Use Local moreAleksey Kladov2019-11-151-8/+6
|
* Cleanup hoverJeremy Kolb2019-11-151-111/+93
| | | | Take advantage of classify_name
* Minor cleanupAleksey Kladov2019-11-121-2/+2
|
* fix typoGreg2019-11-121-1/+1
|
* Implement postfix completions feature flagGreg2019-11-122-0/+5
|
* Introduce hir::GenericParamAleksey Kladov2019-11-111-2/+3
| | | | Unlike existing hir::GenericParams, this is a global ID.
* Add hir::LocalAleksey Kladov2019-11-119-154/+81
|
* Refactor highlighting to use classify_nameAleksey Kladov2019-11-111-72/+73
|
* Introduce ToNav traitAleksey Kladov2019-11-117-177/+200
|
* impl fmt::Display for BuiltinTypeAleksey Kladov2019-11-111-6/+2
|
* Merge #2203bors[bot]2019-11-111-19/+31
|\ | | | | | | | | | | | | | | 2203: Hover for builtins r=matklad a=kjeremy Fixes #2192 Co-authored-by: Jeremy Kolb <[email protected]>
| * Hover for builtinsJeremy Kolb2019-11-101-19/+31
| |
* | Add tests for resolving types in core and std preludesMatthias Einwag2019-11-101-0/+62
|/
* Merge #2169bors[bot]2019-11-093-47/+154
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 2169: MBE: Mapping spans for goto definition r=matklad a=edwin0cheng Currently, go to definition gives the wrong span in MBE. This PR implement a mapping mechanism to fix it and it could be used for future MBE hygiene implementation. The basic idea of the mapping is: 1. When expanding the macro, generated 2 `TokenMap` which maps the macro args and macro defs between tokens and input text-ranges. 2. Before converting generated `TokenTree` to `SyntaxNode`, generated a `ExpandedRangeMap` which is a mapping between token and output text-ranges. 3. Using these 3 mappings to construct an `ExpansionInfo` which can map between input text ranges and output text ranges. Co-authored-by: Edwin Cheng <[email protected]>
| * Remove map_ranges in RevTokenMapEdwin Cheng2019-11-091-1/+1
| |
| * Refactor and simpfilyEdwin Cheng2019-11-082-6/+3
| |
| * Add note for recurseive macro generated codeEdwin Cheng2019-11-041-0/+1
| |
| * Add testsEdwin Cheng2019-11-041-0/+40
| |
| * Use new expansion feature in goto_definitionEdwin Cheng2019-11-042-45/+114
| |