aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* refactor completions to use TextEdit instead of InsertTextgfreezy2019-01-1954-313/+2320
|
* Change parsing of struct field patternsMarcus Klaas de Vries2019-01-195-40/+46
|
* Finish move of StructField for pattern type inferenceMarcus Klaas de Vries2019-01-193-31/+46
|
* Replace Expectation by &Ty in `infer_pat` methodMarcus Klaas de Vries2019-01-191-24/+23
|
* Move parsing of field pattern lists to the parser (where it belongs)Marcus Klaas de Vries2019-01-196-64/+71
|
* Move pattern type inference from adt::StructField to core_model_impl (WIP)Marcus Klaas de Vries2019-01-192-16/+16
|
* Address issues flagged in reviewMarcus Klaas de Vries2019-01-193-75/+45
|
* Fix bug in match arm type unificationMarcus Klaas de Vries2019-01-191-1/+1
|
* Fixup annotated bindingsMarcus Klaas de Vries2019-01-196-30/+54
|
* Add initial (flawed) implementation of binding annotationsMarcus Klaas de Vries2019-01-197-5/+97
|
* Make pattern inference work w/o proper expecationsMarcus Klaas de Vries2019-01-192-35/+63
|
* Infer pattern types for lambdas and loopsMarcus Klaas de Vries2019-01-192-15/+39
|
* Implement match binding type inference and arm unificationMarcus Klaas de Vries2019-01-192-8/+25
|
* Implement unlabeled struct field pattern inferenceMarcus Klaas de Vries2019-01-194-47/+26
|
* Get basic struct pattern type inference working!Marcus Klaas de Vries2019-01-193-81/+124
|
* Create struct patterns up to the hir levelMarcus Klaas de Vries2019-01-195-12/+116
|
* Add crude implementation of tuplestruct pattern inferenceMarcus Klaas de Vries2019-01-193-40/+89
|
* Work on type inference for ADT patternsMarcus Klaas de Vries2019-01-192-3/+32
|
* Implement type inference for tuples and refsMarcus Klaas de Vries2019-01-193-7/+58
|
* Add additional pattern variantsMarcus Klaas de Vries2019-01-196-17/+97
|
* fix the testAleksey Kladov2019-01-191-1/+3
|
* rename LoweredImport -> ImportIdAleksey Kladov2019-01-198-185/+25
|
* switched to lowerd moduleAleksey Kladov2019-01-199-65/+284
|
* simplifyAleksey Kladov2019-01-191-32/+52
|
* move input module items to the lower moduleAleksey Kladov2019-01-194-204/+211
|
* more idiomatic codegfreezy2019-01-191-5/+6
|
* prefer inline testsgfreezy2019-01-194-131/+140
|
* fix commentsgfreezy2019-01-194-40/+5
|
* move rename to a new modgfreezy2019-01-198-105/+233
|
* rename modgfreezy2019-01-194-35/+148
|
* make token set a const-fnAleksey Kladov2019-01-198-57/+52
|
* :arrow_up: update rustAleksey Kladov2019-01-193-3/+1
|
* :arrow_up: salsaAleksey Kladov2019-01-1713-190/+135
|
* Add Ty::Array to walk_mutHirokazu Hata2019-01-162-35/+35
|
* Fix test case invalid syntaxHirokazu Hata2019-01-162-47/+47
|
* Remove unneeded codeHirokazu Hata2019-01-161-2/+2
|
* Fix infer array testHirokazu Hata2019-01-162-40/+57
|
* Fix Ty::ArrayHirokazu Hata2019-01-161-21/+16
|
* Add infer array testHirokazu Hata2019-01-162-0/+61
|
* Implement array inferenceHirokazu Hata2019-01-162-3/+30
|
* Update ARRAY_EXPR grammarHirokazu Hata2019-01-162-2/+8
|
* Merge #536bors[bot]2019-01-162-1/+30
|\ | | | | | | | | | | | | | | | | | | 536: Introduce variable semicolon block expr r=matklad a=yerke Fix for https://github.com/rust-analyzer/rust-analyzer/issues/504 Feels a bit hacky... Co-authored-by: Yerkebulan Tulibergenov <[email protected]>
| * don't need SEMI any moreYerkebulan Tulibergenov2019-01-161-1/+1
| |
| * delete unused fnYerkebulan Tulibergenov2019-01-161-14/+0
| |
| * use has_semiYerkebulan Tulibergenov2019-01-161-5/+4
| |
| * add has_semi to ExprStmtYerkebulan Tulibergenov2019-01-161-0/+9
| |
| * add semi only if it wasn't present before or afterYerkebulan Tulibergenov2019-01-151-3/+19
| |
| * add semicolon for block expr in introduce_variableYerkebulan Tulibergenov2019-01-141-1/+4
| |
| * we don't need to write var_name after block expr?Yerkebulan Tulibergenov2019-01-141-1/+0
| |
| * add failing test test_introduce_var_block_expr_second_to_lastYerkebulan Tulibergenov2019-01-141-0/+17
| |