aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge #1568bors[bot]2019-07-201-1/+1
|\ | | | | | | | | | | | | | | 1568: update readme r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * update readmeAleksey Kladov2019-07-201-1/+1
| |
* | Merge #1567bors[bot]2019-07-201-2/+5
|\ \ | | | | | | | | | | | | | | | | | | | | | 1567: speedup CI r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | speedup CIAleksey Kladov2019-07-201-2/+5
| |/
* | Merge #1566bors[bot]2019-07-209-24/+18
|\ \ | | | | | | | | | | | | | | | | | | | | | 1566: align SyntaxText API with upstream r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | align SyntaxText API with upstreamAleksey Kladov2019-07-209-24/+18
| |/
* | Merge #1562bors[bot]2019-07-206-1/+121
|\ \ | |/ |/| | | | | | | | | | | | | 1562: Continue support for .await r=matklad a=unrealhoang - add await expr to ast and HIR Expr - infer type for `.await` Co-authored-by: Unreal Hoang <[email protected]>
| * infer type for awaitUnreal Hoang2019-07-203-2/+78
| | | | | | | | by projecting inner_ty to Future::Output alias
| * add await expr to astUnreal Hoang2019-07-204-1/+45
| |
* | 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
|/ /