aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api_light/src/join_lines.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move join_lines to ra_ide_apiWilco Kusee2019-03-221-589/+0
|
* Move `non_trivia_sibling` to `ra_syntax::algo`Ville Penttinen2019-02-211-8/+4
|
* Simplify adding a comma after match armVille Penttinen2019-02-211-28/+18
|
* Fix join_lines not adding a comma after join_single_expr_block in match armVille Penttinen2019-02-211-2/+147
| | | | | | | | | | | | | | | | | | | | | | We will also remove optional whitespace between the expression and the comma. e.g. ```rust fn foo() { let x = (<|>{ 4 } ,); // NOTE: whitespace } ``` becomes ```rust fn foo() { let x = (<|>4,); } ```
* add failing testAleksey Kladov2019-02-211-0/+23
|
* Refactor formatting code out of ra_ida_api_light into ra_fmt.Andrea Pretto2019-02-081-2/+3
|
* reformat the worldAleksey Kladov2019-02-081-22/+5
|
* fix code duplicationAleksey Kladov2019-01-101-48/+6
|
* move join_lines to a separate moduleAleksey Kladov2019-01-101-0/+493