aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump insta and proptest to latestkjeremy2019-02-045-28/+37
|
* cargo updatekjeremy2019-02-041-92/+100
|
* Merge #738bors[bot]2019-02-044-3/+101
|\ | | | | | | | | | | | | | | | | 738: Implement lens for impls and support resolving lenses. r=matklad a=kjeremy Closes #620 Co-authored-by: Jeremy Kolb <[email protected]> Co-authored-by: kjeremy <[email protected]>
| * Add commentkjeremy2019-02-041-0/+4
| |
| * Implement lens for impls and support resolving lenses.Jeremy Kolb2019-02-044-3/+97
|/
* Merge #736bors[bot]2019-02-042-24/+49
|\ | | | | | | | | | | | | | | 736: mbe: Add support matching for matching idents r=jrmuizel a=jrmuizel Factors out a helper and adds support for matching idents. Co-authored-by: Jeff Muizelaar <[email protected]>
| * mbe: Add support matching for matching identsJeff Muizelaar2019-02-042-0/+29
| |
| * Factor out rules parsingJeff Muizelaar2019-02-041-24/+20
|/
* Merge #735bors[bot]2019-02-035-16/+26
|\ | | | | | | | | | | | | | | 735: make HirDatabase object-safe r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * make HirDatabase object-safeAleksey Kladov2019-02-035-16/+26
|/
* Merge #733bors[bot]2019-02-037-9/+300
|\ | | | | | | | | | | | | | | 733: fill match arms r=matklad a=gfreezy fixed #626 Co-authored-by: gfreezy <[email protected]>
| * fill match armgfreezy2019-02-037-9/+300
| |
* | Merge #732bors[bot]2019-02-031-0/+1
|\ \ | |/ |/| | | | | | | | | | | 732: Add core to STD_DEPS r=matklad a=lnicola See #731. Co-authored-by: Laurențiu Nicola <[email protected]>
| * Add core to STD_DEPSLaurențiu Nicola2019-02-031-0/+1
|/ | | See #731.
* Merge #730bors[bot]2019-02-032-1/+34
|\ | | | | | | | | | | | | | | 730: Make sure we match the entire pattern r=matklad a=jrmuizel Co-authored-by: Jeff Muizelaar <[email protected]>
| * Make sure we match the entire patternJeff Muizelaar2019-02-032-1/+34
|/
* Merge #728bors[bot]2019-02-034-230/+28
|\ | | | | | | | | | | | | | | 728: add postfix completion for `dbg!()` with `.dbg` r=matklad a=hdhoang closes #716 Co-authored-by: Hoàng Đức Hiếu <[email protected]>
| * fold complete_postfix tests into oneHoàng Đức Hiếu2019-02-035-411/+3
| |
| * add postfix completion for `dbg!()` with `.dbg`Hoàng Đức Hiếu2019-02-025-6/+212
| |
* | Merge #727bors[bot]2019-02-032-1/+53
|\ \ | | | | | | | | | | | | | | | | | | | | | 727: Fix macro_rules separator parsing. r=matklad a=jrmuizel macro_rules rules are separated by ';' including an optional ';' at the end Co-authored-by: Jeff Muizelaar <[email protected]>
| * | Fill out test a little moreJeff Muizelaar2019-02-031-14/+18
| | | | | | | | | | | | | | | This factors out an assert_expansion function to make things more managable.
| * | Fix macro_rules separator parsing.Jeff Muizelaar2019-02-032-1/+49
| | | | | | | | | | | | | | | macro_rules rules are separated by ';' including an optional ';' at the end
* | | Merge #726bors[bot]2019-02-022-0/+0
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | 726: Fix number of extern_inner_attributes r=DJMcNab a=DJMcNab bors r+ Co-authored-by: DJMcNab <[email protected]>
| * | Fix number of extern_inner_attributesDJMcNab2019-02-022-0/+0
|/ /
* | Merge #725bors[bot]2019-02-026-17/+83
|\ \ | | | | | | | | | | | | | | | | | | | | | 725: Implement `use as` r=matklad a=flodiebold Co-authored-by: Florian Diebold <[email protected]>
| * | Use aliases in import resolutionFlorian Diebold2019-02-011-9/+12
| | |
| * | Pass aliases to ImportDataFlorian Diebold2019-02-014-8/+47
| | |
| * | Add test for `use as`Florian Diebold2019-02-011-0/+24
|/ /
* | Merge #693bors[bot]2019-02-0126-421/+906
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 693: Name resolution refactoring r=matklad a=flodiebold This is still very WIP, but it's becoming quite big and I want to make sure this isn't going in a completely bad direction :sweat_smile:. I'm not really happy with how the path resolution looks, and I'm not sure `PerNs<Resolution>` is the best return type -- there are 'this cannot happen in the (types/values) namespace' cases everywhere. I also want to unify the `resolver` and `nameres` namespaces once I'm done switching everything to `Resolver`. Also, `Resolver` only has a lifetime because it needs to have a reference to the `ItemMap` during import resolution :confused: The differences in the completion snapshots are almost completely just ordering (except it completes `Self` as well now), so I changed it to sort the completions before snapshotting. Co-authored-by: Florian Diebold <[email protected]>
| * | Some cleanup and additional testsFlorian Diebold2019-02-017-31/+138
| | |
| * | Make the Resolution variants tuple variantsFlorian Diebold2019-02-017-53/+41
| | |
| * | CleanupFlorian Diebold2019-02-017-27/+17
| | |
| * | Use the new Resolver API for goto defFlorian Diebold2019-02-016-35/+89
| | |
| * | Use the new Resolver API in completionFlorian Diebold2019-02-0111-106/+190
| | |
| * | Use new Resolver API in type inferenceFlorian Diebold2019-02-0113-250/+296
| | |
| * | Implement methods to build a resolverFlorian Diebold2019-02-015-73/+166
| | |
| * | Sketching the resolver APIFlorian Diebold2019-02-018-11/+134
|/ /
* | Merge #718bors[bot]2019-02-0121-115/+162
|\ \ | | | | | | | | | | | | | | | | | | | | | 718: split HirDatabase r=matklad a=csmoe Closes #706 Co-authored-by: csmoe <[email protected]>
| * | split HirDatabase apicsmoe2019-02-0121-106/+147
| | |
| * | split hirdatabasecsmoe2019-02-011-20/+26
|/ /
* | Merge #722bors[bot]2019-02-015-73/+16
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 722: remove hard-coded support for ctry macro r=matklad a=matklad It was used mainly to prevent HirFileId infra from bitroting, but the `vec![]` macro can serve that just as well! Co-authored-by: Aleksey Kladov <[email protected]>
| * | remove hard-coded support for ctry macroAleksey Kladov2019-02-015-73/+16
|/ / | | | | | | | | It was used mainly to prevent HirFileId infra from bitroting, but the `vec![]` macro can serve that just as well!
* | Merge #721bors[bot]2019-02-013-26/+140
|\ \ | |/ |/| | | | | | | | | | | | | | | 721: Go To Implementation for Trait r=matklad a=kjeremy If on a trait def you can now go to all the impls of that trait in the crate. This is more of #620. Co-authored-by: kjeremy <[email protected]>
| * Go To Implementation for Traitkjeremy2019-01-313-26/+140
|/
* explain the magicAleksey Kladov2019-01-312-19/+56
|
* cleanup the apiAleksey Kladov2019-01-313-56/+70
|
* cleanupAleksey Kladov2019-01-313-40/+42
|
* move testAleksey Kladov2019-01-318-120/+129
|
* split macros across cratesAleksey Kladov2019-01-3111-29/+57
|
* preserve token spacingAleksey Kladov2019-01-317-30/+59
|