aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* kill old lexerAleksey Kladov2019-07-226-571/+17
|
* add rustc_lexerAleksey Kladov2019-07-227-25/+149
|
* Merge #1570bors[bot]2019-07-2128-772/+238
|\ | | | | | | | | | | | | | | 1570: switch to upstream rowan's API r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * simiplifyAleksey Kladov2019-07-212-11/+10
| |
| * streamline APIAleksey Kladov2019-07-2110-37/+33
| |
| * minor, move typeAleksey Kladov2019-07-213-12/+13
| |
| * switch to upstream rowan's APIAleksey Kladov2019-07-2021-725/+195
| |
* | provide completion in struct patternsEkaterina Babshukova2019-07-217-21/+134
|/
* 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
| |
* | add await to syntax, parser for await_exprUnreal Hoang2019-07-205-0/+93
|/
* remove lifetime from syntax node textAleksey Kladov2019-07-193-14/+15
|
* sane indexing in textAleksey Kladov2019-07-192-11/+13
|
* flip syntax text to use internal iterationAleksey Kladov2019-07-194-38/+78
|
* 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
* convenience apiAleksey Kladov2019-07-198-50/+63
|
* minorAleksey Kladov2019-07-191-5/+1
|
* cleanup castsAleksey Kladov2019-07-196-850/+975
|
* 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
* switch to the upstream rowanAleksey Kladov2019-07-191-1/+1
|
* 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-1918-2347/+1183
|
* 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
| |
* | 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.
* | highlight mutable variables differentlyEkaterina Babshukova2019-07-185-55/+104
| |
* | use more correct phantom types for ptrsAleksey Kladov2019-07-182-2/+2
| |
* | jemallocator 0.3Jeremy A. Kolb2019-07-172-5/+5
| |
* | Add "Run" lens for binary runnablesKirill Bulatov2019-07-161-1/+1
|/
* cargo updatekjeremy2019-07-152-2/+2
|
* Switch to Chalk master, without fuelFlorian Diebold2019-07-152-4/+4
|
* Remove blacklist, instead mark `Sized` as non-enumerableFlorian Diebold2019-07-151-17/+3
| | | | | This seems to be enough to prevent hanging in rust-analyzer, Chalk and the rustc repo.
* Cargo update, including updating ChalkFlorian Diebold2019-07-141-0/+2
|
* Have InferenceContext contain an InferenceResult instead of duplicating all ↵Florian Diebold2019-07-141-36/+19
| | | | fields
* Some renamings for clarityFlorian Diebold2019-07-149-25/+28
|