aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* align SyntaxText API with upstreamAleksey Kladov2019-07-209-24/+18
|
* Merge #1560bors[bot]2019-07-2057-241/+260
|\ | | | | | | | | | | | | | | 1560: move debug_dump to fmt::Debug r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * rename range -> text_rangeAleksey Kladov2019-07-2054-192/+219
| |
| * move debug_dump to fmt::DebugAleksey Kladov2019-07-2010-50/+42
| |
* | Merge #1558bors[bot]2019-07-205-0/+93
|\ \ | |/ |/| | | | | | | | | | | | | 1558: Support .await syntax r=matklad a=unrealhoang - [x] Add `await` keyword to grammar, parser for await_expr - [ ] Infer type for await_expr Co-authored-by: Unreal Hoang <[email protected]>
| * add await to syntax, parser for await_exprUnreal Hoang2019-07-205-0/+93
|/
* Merge #1557bors[bot]2019-07-193-14/+15
|\ | | | | | | | | | | | | | | 1557: remove lifetime from syntax node text r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * remove lifetime from syntax node textAleksey Kladov2019-07-193-14/+15
| |
* | Merge #1556bors[bot]2019-07-195-49/+91
|\| | | | | | | | | | | | | | | 1556: sane indexing in text r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * sane indexing in textAleksey Kladov2019-07-192-11/+13
| |
| * flip syntax text to use internal iterationAleksey Kladov2019-07-194-38/+78
| |
* | Merge #1555bors[bot]2019-07-192-15/+4
|\| | | | | | | | | | | | | | | 1555: drop memory size of subtree r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * drop memory size of subtreeAleksey Kladov2019-07-192-15/+4
| | | | | | | | | | it wasn't too accurate and the new measurement method of dropping the database completely is better anyway
* | Merge #1554bors[bot]2019-07-198-50/+63
|\| | | | | | | | | | | | | | | 1554: convenience api r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * convenience apiAleksey Kladov2019-07-198-50/+63
| |
* | Merge #1553bors[bot]2019-07-197-855/+976
|\| | | | | | | | | | | | | | | 1553: cleanup casts r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * minorAleksey Kladov2019-07-191-5/+1
| |
| * cleanup castsAleksey Kladov2019-07-196-850/+975
|/
* Merge #1551bors[bot]2019-07-196-68/+92
|\ | | | | | | | | | | | | | | 1551: several highlighting cleanups r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * several highlighting cleanupsAleksey Kladov2019-07-196-68/+92
| | | | | | | | | | | | * make stuff more type-safe by using `BindPat` instead of just `Pat` * don't add `mut` into binding hash * reset shadow counter when we enter a function
* | Merge #1550bors[bot]2019-07-192-30/+37
|\| | | | | | | | | | | | | | | 1550: underline mutable bindings r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * underline mutable bindingsAleksey Kladov2019-07-192-30/+37
|/
* Merge #1545bors[bot]2019-07-1992-3100/+1984
|\ | | | | | | | | | | | | | | 1545: migrate ra_syntax to the new rowan API r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * switch to the upstream rowanAleksey Kladov2019-07-193-7/+6
| |
| * migrate ra_cli to the new rowanAleksey Kladov2019-07-191-3/+3
| |
| * migrate ra_ide_api to the new rowanAleksey Kladov2019-07-1929-290/+342
| |
| * migrate ra_assists to the new ASTAleksey Kladov2019-07-1917-204/+213
| |
| * migrate ra_hir to the new rowanAleksey Kladov2019-07-1922-210/+206
| |
| * migrate ra_fmt to new rowanAleksey Kladov2019-07-191-7/+7
| |
| * migrate mbe to the new rowanAleksey Kladov2019-07-194-36/+27
| |
| * migrate ra_syntax to the new rowan APIAleksey Kladov2019-07-1920-2350/+1187
|/
* Merge #1548bors[bot]2019-07-1810-81/+103
|\ | | | | | | | | | | | | | | 1548: use Parse in mbe r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * use Parse in mbeAleksey Kladov2019-07-187-63/+64
| |
| * make Parse genericAleksey Kladov2019-07-185-23/+44
|/
* Merge #1547bors[bot]2019-07-182-6/+5
|\ | | | | | | | | | | | | | | 1547: cleanup imports r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * cleanup importsAleksey Kladov2019-07-182-6/+5
| |
* | Merge #1546bors[bot]2019-07-183-18/+21
|\ \ | |/ |/| | | | | | | | | | | 1546: prettier colors r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * prettier colorsAleksey Kladov2019-07-183-18/+21
|/
* Merge #1537bors[bot]2019-07-181-26/+103
|\ | | | | | | | | | | | | | | | | | | | | | | 1537: Less magic completions r=matklad a=marcogroppo Restrict `if`, `not` and `while` postfix magic completions to boolean expressions and expressions of an unknown type. (this may be controversial, marking as draft for this reason) See the discussion in #1526. Co-authored-by: Marco Groppo <[email protected]>
| * Restrict some postfix completions to bool and unknown expr.Marco Groppo2019-07-171-26/+103
| | | | | | | | | | Restrict `if` and `while` postfix completions to boolean expressions and expressions of an unknown type.
* | Merge #1544bors[bot]2019-07-187-55/+114
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 1544: Highlight mutable variables differently r=matklad a=viorina ![Screenshot from 2019-07-18 19-04-57](https://user-images.githubusercontent.com/6714973/61473539-3f5d3000-a98f-11e9-99ec-a4115b2ba66b.png) Co-authored-by: Ekaterina Babshukova <[email protected]>
| * | highlight mutable variables differentlyEkaterina Babshukova2019-07-187-55/+114
|/ /
* | Merge #1543bors[bot]2019-07-182-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | 1543: use more correct phantom types for ptrs r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | use more correct phantom types for ptrsAleksey Kladov2019-07-182-2/+2
|/ /
* | Merge #1538bors[bot]2019-07-173-15/+49
|\ \ | | | | | | | | | | | | | | | | | | | | | 1538: jemallocator 0.3 r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]>
| * | jemallocator 0.3Jeremy A. Kolb2019-07-173-15/+49
|/ /
* | Merge #1536bors[bot]2019-07-161-1/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1536: Add "Run" lens for binary runnables r=matklad a=SomeoneToIgnore Add an easy way to launch the different `main` methods from VS Code: Before: ![image](https://user-images.githubusercontent.com/2690773/61294531-b0111a80-a7de-11e9-856a-eedce52f883f.png) After: ![image](https://user-images.githubusercontent.com/2690773/61294556-bef7cd00-a7de-11e9-9fbd-cb5076e0b1b6.png) I've decided to omit the ️`▶️` symbol (as done for benches) since it looks a bit weird to me, but here's the version with it, just to compare: ![image](https://user-images.githubusercontent.com/2690773/61294597-dafb6e80-a7de-11e9-8f08-b513b8902ef5.png) Co-authored-by: Kirill Bulatov <[email protected]>
| * Add "Run" lens for binary runnablesKirill Bulatov2019-07-161-1/+1
|/
* Merge #1535bors[bot]2019-07-151-1/+1
|\ | | | | | | | | | | | | | | 1535: fix: spelling r=matklad a=martingronlund Co-authored-by: Martin Grönlund <[email protected]>
| * fix: spellingMartin Grönlund2019-07-151-1/+1
|/