aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* 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
* | | Fix number of extern_inner_attributesDJMcNab2019-02-022-0/+0
| |/ |/|
* | 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
| |
* | Some cleanup and additional testsFlorian Diebold2019-02-016-30/+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-0112-250/+295
| |
* | Implement methods to build a resolverFlorian Diebold2019-02-015-73/+166
| |
* | Sketching the resolver APIFlorian Diebold2019-02-018-11/+134
| |
* | split HirDatabase apicsmoe2019-02-0121-106/+147
| |
* | split hirdatabasecsmoe2019-02-011-20/+26
| |
* | 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!
* | 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-317-118/+128
|
* split macros across cratesAleksey Kladov2019-01-3110-27/+45
|
* preserve token spacingAleksey Kladov2019-01-316-29/+59
|
* first test sort-of passesAleksey Kladov2019-01-317-40/+214
|
* extract tt cursorAleksey Kladov2019-01-314-96/+101
|
* binders boilerplateAleksey Kladov2019-01-311-2/+42
|
* more expand boilerplateAleksey Kladov2019-01-312-4/+4
|
* more expand boilerplateAleksey Kladov2019-01-312-2/+24
|
* expand boilerplateAleksey Kladov2019-01-313-1/+10
|
* reshuffleAleksey Kladov2019-01-313-200/+210
|
* move macros to a separate crateAleksey Kladov2019-01-316-23/+42
|
* parses simple macroAleksey Kladov2019-01-313-23/+131
|
* handle multibyte tokensAleksey Kladov2019-01-312-23/+31
|
* add eat methodsAleksey Kladov2019-01-311-6/+23
|
* parsing scaffoldAleksey Kladov2019-01-311-4/+45
|
* debug implsAleksey Kladov2019-01-313-2/+47
|
* add repeats to astAleksey Kladov2019-01-311-0/+12
|
* convert punts and literalsAleksey Kladov2019-01-314-20/+127
|
* start tt convertions boilerplateAleksey Kladov2019-01-312-7/+43
|
* add conversion boilerplateAleksey Kladov2019-01-313-7/+17
|
* add macro by example ideAleksey Kladov2019-01-312-0/+52
|
* shorten name :-)Aleksey Kladov2019-01-312-1/+1
|
* start token tree moduleAleksey Kladov2019-01-312-0/+39
|
* Merge #715bors[bot]2019-01-311-1/+3
|\ | | | | | | | | | | | | | | 715: Use "▶" for test code lens r=matklad a=kjeremy I find that this makes code lenses stand out more otherwise they can be easy to miss. Co-authored-by: Jeremy Kolb <[email protected]>