Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge #646 | bors[bot] | 2019-01-25 | 3 | -1/+43 |
|\ | | | | | | | | | | | | | | | 646: Add module documentation support r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | Add module documentation support | Jeremy A. Kolb | 2019-01-25 | 3 | -1/+43 |
| | | |||||
* | | Merge #645 | bors[bot] | 2019-01-25 | 3 | -6/+47 |
|\ \ | |/ |/| | | | | | | | | | | | 645: WIP: support goto for fields. r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | add ability to get strcut field source | Aleksey Kladov | 2019-01-25 | 3 | -6/+47 |
| | | |||||
* | | Merge #644 | bors[bot] | 2019-01-25 | 3 | -6/+107 |
|\ \ | |/ |/| | | | | | | | | | | | 644: EnumVariant details for completion r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | EnumVariant details for completion | Jeremy A. Kolb | 2019-01-25 | 3 | -6/+107 |
| | | |||||
* | | add gc request | Aleksey Kladov | 2019-01-25 | 2 | -2/+7 |
|/ | |||||
* | more stats | Aleksey Kladov | 2019-01-25 | 2 | -33/+130 |
| | |||||
* | better stats | Aleksey Kladov | 2019-01-25 | 1 | -2/+48 |
| | |||||
* | Merge #639 | bors[bot] | 2019-01-25 | 3 | -75/+22 |
|\ | | | | | | | | | | | | | | | 639: Update salsa r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | use set methods | Aleksey Kladov | 2019-01-25 | 1 | -25/+14 |
| | | |||||
| * | :arrow_up salsa | Aleksey Kladov | 2019-01-25 | 2 | -50/+8 |
| | | |||||
* | | use positional ids for fields | Aleksey Kladov | 2019-01-25 | 1 | -2/+2 |
|/ | |||||
* | pack enum variants into arena | Aleksey Kladov | 2019-01-25 | 2 | -6/+5 |
| | |||||
* | rename def_id -> def | Aleksey Kladov | 2019-01-25 | 1 | -4/+1 |
| | |||||
* | write path resolution code only once | Aleksey Kladov | 2019-01-25 | 1 | -3/+1 |
| | |||||
* | Merge #623 | bors[bot] | 2019-01-24 | 9 | -98/+108 |
|\ | | | | | | | | | | | | | | | | | | | | | 623: WIP: module id is not def id r=matklad a=matklad This achieves two things: * makes module_tree & item_map per crate, not per source_root * begins the refactoring to remove universal `DefId` in favor of having separate ids for each kind of `Def`. Currently, only modules get a differnt ID though. Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | ModuleDef is Def-free | Aleksey Kladov | 2019-01-24 | 2 | -2/+0 |
| | | |||||
| * | Migrate trait & type to new ids | Aleksey Kladov | 2019-01-24 | 3 | -42/+32 |
| | | |||||
| * | move consts&statics to new id | Aleksey Kladov | 2019-01-24 | 3 | -10/+18 |
| | | |||||
| * | adapt ide_api to the new API | Aleksey Kladov | 2019-01-24 | 3 | -5/+12 |
| | | |||||
| * | adapt ide_api to the new API | Aleksey Kladov | 2019-01-24 | 4 | -46/+45 |
| | | |||||
| * | new struct id | Aleksey Kladov | 2019-01-24 | 1 | -15/+18 |
| | | |||||
| * | update ide_api to new hir | Aleksey Kladov | 2019-01-24 | 5 | -10/+14 |
| | | |||||
| * | Change ids strategy | Aleksey Kladov | 2019-01-24 | 7 | -75/+76 |
| | | | | | | | | | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids | ||||
* | | Display type when completing tuples | Jeremy Kolb | 2019-01-24 | 2 | -1/+55 |
|/ | |||||
* | encapsulate hir locations | Aleksey Kladov | 2019-01-24 | 2 | -30/+10 |
| | |||||
* | Fix snap | Jeremy A. Kolb | 2019-01-23 | 2 | -6/+12 |
| | |||||
* | Add a bunch of new documentation to completions | Jeremy A. Kolb | 2019-01-23 | 2 | -20/+30 |
| | |||||
* | Add way of getting docs from the code model and use for completion | Jeremy A. Kolb | 2019-01-23 | 2 | -7/+11 |
| | |||||
* | move SyntaxPtr to ra_syntax | Aleksey Kladov | 2019-01-23 | 3 | -10/+10 |
| | |||||
* | don't insert parens for self methods | Aleksey Kladov | 2019-01-23 | 5 | -13/+52 |
| | |||||
* | move completion item tests closer to the code | Aleksey Kladov | 2019-01-23 | 5 | -44/+66 |
| | | | | | this is the reason why we need marks: the tests were spread across two files, because I've forgotten that there were tests already | ||||
* | fix completion bugs | gfreezy | 2019-01-23 | 26 | -133/+154 |
| | |||||
* | Merge #598 | bors[bot] | 2019-01-23 | 15 | -31/+92 |
|\ | | | | | | | | | | | | | | | 598: Add function signature to CompletionItem detail r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | Move label from hir to ide_api | Jeremy A. Kolb | 2019-01-22 | 1 | -2/+25 |
| | | |||||
| * | Add function signature to CompletionItem detail | Jeremy A. Kolb | 2019-01-22 | 15 | -30/+68 |
| | | |||||
* | | ad status command | Aleksey Kladov | 2019-01-22 | 2 | -0/+21 |
| | | |||||
* | | Simplify CallInfo label and documentation | Jeremy A. Kolb | 2019-01-22 | 1 | -40/+7 |
|/ | |||||
* | Update snaps | Jeremy A. Kolb | 2019-01-22 | 52 | -208/+433 |
| | |||||
* | Move docs to Function | Jeremy Kolb | 2019-01-22 | 1 | -3/+2 |
| | |||||
* | Thread documentation through FnSignature and CompletionItem | Jeremy Kolb | 2019-01-22 | 1 | -0/+5 |
| | |||||
* | Teach CompletionItem about documentation | Jeremy Kolb | 2019-01-22 | 1 | -0/+16 |
| | |||||
* | Fix .not postfix completion | Florian Diebold | 2019-01-21 | 4 | -9/+9 |
| | |||||
* | Merge #582 | bors[bot] | 2019-01-21 | 6 | -30/+312 |
|\ | | | | | | | | | | | | | | | 582: Postfix completion r=matklad a=gfreezy resolved #525 Co-authored-by: gfreezy <[email protected]> | ||||
| * | postfix completion | gfreezy | 2019-01-21 | 6 | -30/+312 |
| | | |||||
* | | typos fix | gfreezy | 2019-01-21 | 1 | -4/+4 |
|/ | |||||
* | Merge #574 | bors[bot] | 2019-01-20 | 52 | -301/+2179 |
|\ | | | | | | | | | | | | | | | | | 574: refactor completions to use TextEdit instead of InsertText r=matklad a=gfreezy 1. migrate from `insertText` to `TextEdit` from `CompleteItem` 2. use `insta` to test completions Co-authored-by: gfreezy <[email protected]> | ||||
| * | fix tests | gfreezy | 2019-01-20 | 8 | -19/+19 |
| | | |||||
| * | workaround for trigger character | gfreezy | 2019-01-20 | 1 | -1/+5 |
| | |