aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src
Commit message (Collapse)AuthorAgeFilesLines
* Rename source_edit to source_file_edit to match file_system_editVille Penttinen2019-03-255-11/+11
|
* Further improvements to the SourceChange convenience methodsVille Penttinen2019-03-254-27/+50
| | | | | Rename system_edit to file_system_edit, add more documentation, add source_file_edit_from to create a SourceChange from `FileId` and `TextEdit`.
* Add convenience functions to SourceChange for creating single editsVille Penttinen2019-03-244-44/+63
|
* Merge #1031bors[bot]2019-03-236-31/+594
|\ | | | | | | | | | | | | | | | | | | 1031: Move most things out of ra_ide_api_light r=matklad a=detrumi This moves everything except `structure` out of `ra_ide_api_light`. So this PR and #1019 finish up #1009, whichever is merged last should probably remove the `ra_ide_api_light` crate. Also, `LocalEdit` was removed since it wasn't used any more. Co-authored-by: Wilco Kusee <[email protected]>
| * Move highlighting and matching_braceWilco Kusee2019-03-235-11/+165
| |
| * Remove LocalEdit usageWilco Kusee2019-03-232-55/+55
| |
| * Move typing to ra_ide_apiWilco Kusee2019-03-232-3/+412
| |
* | remove obsolete diagnosticAleksey Kladov2019-03-231-21/+0
| |
* | rename persistent hir database -> def databaseAleksey Kladov2019-03-231-1/+1
|/
* replace todo with fixmeAleksey Kladov2019-03-237-7/+7
|
* Simplify changes and fix testsWilco Kusee2019-03-223-19/+15
|
* Remove LocalEdit usageWilco Kusee2019-03-222-16/+17
|
* Move join_lines to ra_ide_apiWilco Kusee2019-03-223-4/+616
|
* Move folding_ranges to ra_ide_apiSergey Parilin2019-03-222-2/+330
|
* line_index and line_index_utils moved to ra_ide_apiSergey Parilin2019-03-223-1/+614
|
* Rename name field to ctor as wellFlorian Diebold2019-03-211-1/+1
|
* TypeName => TypeCtorFlorian Diebold2019-03-211-3/+3
|
* Remove the old variants replaced by Ty::ApplyFlorian Diebold2019-03-214-42/+22
|
* cleanupAleksey Kladov2019-03-211-68/+73
|
* move diagnostics to ide_apiAleksey Kladov2019-03-211-10/+250
|
* move extend selection from ra_ide_api_light to ra_ide_apiAleksey Kladov2019-03-201-6/+371
|
* introduce Analysis::from_single_fileAleksey Kladov2019-03-201-0/+17
|
* remove old macro supportAleksey Kladov2019-03-172-78/+4
|
* remove lower moduleAleksey Kladov2019-03-172-9/+4
|
* Replace module_tree with CrateDefMapAleksey Kladov2019-03-171-1/+1
|
* Replace Display by a pretty printing trait for TyFlorian Diebold2019-03-162-6/+10
| | | | | This allows removing the names from Adt and FnDef (and more later), as a first step towards aligning more with chalk's Ty :)
* sort navigations to make tests stableAleksey Kladov2019-03-141-1/+2
|
* Remove superfluous semicolonskjeremy2019-03-081-5/+5
| | | | | Doesn't change the result of the test but it does prevent the syntax tree from rendering.
* Use ast::Name::text() instead of name().syntax().text()Ville Penttinen2019-03-071-2/+2
|
* Fix EnumVariants not showing properly when hoveringVille Penttinen2019-03-071-2/+56
| | | | This fixes documentation as well for EnumVariants
* Add support for goto definition and hover on SelfVille Penttinen2019-03-073-2/+165
| | | | This fixes #943
* Use source mapkjeremy2019-03-061-14/+9
|
* Hover for associated items in patternskjeremy2019-03-062-8/+55
|
* dont produce giant debug dumpsAleksey Kladov2019-03-051-1/+8
|
* Make ExpOrPatId privatekjeremy2019-03-041-1/+1
|
* FormatJeremy Kolb2019-03-041-7/+2
|
* Add NavigationTarget::from_impl_itemJeremy Kolb2019-03-042-14/+22
|
* Use ImplItems instead of just FunctionJeremy Kolb2019-03-042-6/+17
|
* Make goto definition/hover resolve constructorskjeremy2019-03-042-4/+47
|
* Allow syntax strings to contain test markersVille Penttinen2019-03-041-1/+3
| | | | | We simply remove all the CUSTOM_MARKERS before attempting to parse the file. This allows for the syntax selection to work with most of the test strings.
* Implement syntax tree support for syntax inside stringVille Penttinen2019-03-042-8/+88
| | | | | | This allows us to select a string or portions of it and try parsing it as rust syntax. This is mostly helpful when developing tests where the test itself contains some rust syntax as a string.
* Add optional range parameter to SyntaxTreeParamsVille Penttinen2019-03-031-3/+9
| | | | | When range is provided, instead of showing the syntax for the whole file, we'll show the syntax tree for the given range.
* Represent unknown types as {unknown} instead of [unknown]Florian Diebold2019-03-031-1/+1
| | | | Since the latter could actually be a real type...
* Merge #908bors[bot]2019-03-021-8/+27
|\ | | | | | | | | | | | | | | | | | | | | 908: Enable markup for hover on expressions which resolve using type_of r=matklad a=vipentti This adds highlighting when hovering over items which are resolved using `type_of`. This adds basic highlighting, discussed in #904. Co-authored-by: Ville Penttinen <[email protected]>
| * Enable markup for hover on expressions which resolve using type_ofVille Penttinen2019-02-281-8/+27
| | | | | | | | | | This adds highlighting when hovering over items which are resolved using `type_of`.
* | remove second way to get the bodyAleksey Kladov2019-03-021-1/+1
| |
* | rename syntax_mapping as wellAleksey Kladov2019-03-024-16/+15
| |
* | align lower module query namesAleksey Kladov2019-03-021-2/+1
| |
* | dont store body inside source mapAleksey Kladov2019-03-021-1/+1
| |
* | rename syntax-mapping -> source-mapAleksey Kladov2019-03-025-7/+7
| |