Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add `cargo gen-kinds` documentation | Daniel McNab | 2018-10-04 | 5 | -1/+20 |
| | |||||
* | Merge #94 | bors[bot] | 2018-10-04 | 1 | -4/+32 |
|\ | | | | | | | | | | | | | | | 94: Extend comments by single word first r=matklad a=kjeremy Fixes #88 Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | Pull casts out of TextUnit | Jeremy A. Kolb | 2018-10-04 | 1 | -4/+4 |
| | | |||||
| * | Simplify extend_single_word_in_comment | Jeremy A. Kolb | 2018-10-04 | 1 | -15/+11 |
| | | |||||
| * | Extend comments by single word first | Jeremy A. Kolb | 2018-10-03 | 1 | -4/+36 |
| | | | | | | | | Fixes #88 | ||||
* | | Merge #93 | bors[bot] | 2018-10-04 | 3 | -12/+59 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 93: Support leading pipe in match arms r=matklad a=DJMcNab This adds support for match arms of the form: ```rust <...> | X | Y => <...>, | X => <...>, | 1..2 => <...>, etc ``` # Implementation discussion This just naïvely 'eats' a leading pipe if one is available. The equivalent line in the reference `libsyntax` is in [`parse_arm`](https://github.com/rust-lang/rust/blob/441519536c8bd138e8c651743249acd6814747a1/src/libsyntax/parse/parser.rs#L3552). As noted in the comment linked above, this feature was formally introduced as a result of rust-lang/rfcs#1925. This feature is in active use in the [`rust-analyzer` codebase](https://github.com/matklad/rust-analyzer/blob/c87fcb4ea5874a7307c1d9d1192e923f3ae2c922/crates/ra_syntax/src/syntax_kinds/generated.rs#L231) I have added some tests for this feature, but maybe more would be required EDIT: Always looking for feedback - is this PR description over-engineered? Co-authored-by: Daniel McNab <[email protected]> | ||||
| * | Support leading pipe in match arms | Daniel McNab | 2018-10-03 | 3 | -12/+59 |
| | | |||||
* | | Make siblings an inherent method | Aleksey Kladov | 2018-10-02 | 6 | -34/+30 |
| | | |||||
* | | make ancestors and descendants inherent | Aleksey Kladov | 2018-10-02 | 14 | -46/+40 |
| | | |||||
* | | use aliases | Aleksey Kladov | 2018-10-02 | 1 | -2/+2 |
| | | |||||
* | | Move to rowan for syntax tree impl | Aleksey Kladov | 2018-10-02 | 11 | -530/+137 |
|/ | |||||
* | fix code actions | Aleksey Kladov | 2018-09-29 | 1 | -1/+1 |
| | |||||
* | support 2018 paths | Aleksey Kladov | 2018-09-29 | 3 | -3/+21 |
| | |||||
* | Merge #81 | bors[bot] | 2018-09-26 | 5 | -2/+148 |
|\ | | | | | | | | | | | | | | | 81: [WIP] Reject impl keyword inside impl header r=matklad a=csmoe Closes #77 Co-authored-by: csmoe <[email protected]> | ||||
| * | generate testsuite for impl_type | csmoe | 2018-09-26 | 5 | -13/+94 |
| | | |||||
| * | parse impl type | csmoe | 2018-09-25 | 3 | -57/+44 |
| | | |||||
| * | reject impl keyword in impl header | csmoe | 2018-09-24 | 1 | -2/+10 |
| | | |||||
| * | add test for impl recovery | csmoe | 2018-09-24 | 2 | -0/+70 |
| | | |||||
* | | Unit Tests | Jeremy A. Kolb | 2018-09-24 | 1 | -0/+56 |
| | | |||||
* | | Split folding ranges into editor and lsp parts | Jeremy A. Kolb | 2018-09-24 | 4 | -77/+114 |
| | | |||||
* | | Implement folding ranges | Jeremy A. Kolb | 2018-09-23 | 2 | -1/+90 |
| | | |||||
* | | Support LSP 3.13 | Jeremy A. Kolb | 2018-09-23 | 4 | -6/+10 |
|/ | |||||
* | Merge #75 | bors[bot] | 2018-09-19 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | 75: libsyntax2 -> rust-analyzer r=matklad a=kjeremy Change a few `libsyntax2` to `rust-analyzer` Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | libsyntax2 -> rust-analyzer | Jeremy A. Kolb | 2018-09-18 | 1 | -1/+1 |
| | | |||||
* | | prefer lifetimes in extend selection | Aleksey Kladov | 2018-09-19 | 1 | -1/+13 |
| | | |||||
* | | Add emacs function for extend shirnk selection | Aleksey Kladov | 2018-09-18 | 3 | -3/+37 |
|/ | |||||
* | eprintln | Aleksey Kladov | 2018-09-16 | 1 | -7/+37 |
| | |||||
* | rename all things | Aleksey Kladov | 2018-09-16 | 468 | -107/+107 |
| | |||||
* | fix derecated call | Aleksey Kladov | 2018-09-16 | 1 | -2/+2 |
| | |||||
* | fix installation for windows | Aleksey Kladov | 2018-09-16 | 1 | -3/+11 |
| | |||||
* | get rid of commandspeck | Aleksey Kladov | 2018-09-16 | 2 | -22/+21 |
| | |||||
* | Merge #67 | bors[bot] | 2018-09-15 | 18 | -453/+1285 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 67: Salsa r=matklad a=matklad The aim of this PR is to transition from rather ad-hock FileData and ModuleMap caching strategy to something resembling a general-purpose red-green engine. Ideally, we shouldn't recompute ModuleMap at all, unless the set of mod decls or files changes. Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | everysalsa | Aleksey Kladov | 2018-09-15 | 4 | -23/+40 |
| | | |||||
| * | kill old module_map | Aleksey Kladov | 2018-09-15 | 9 | -540/+239 |
| | | |||||
| * | move readonly source to module tree descr | Aleksey Kladov | 2018-09-15 | 2 | -17/+25 |
| | | |||||
| * | ModuleTreeDescriptor | Aleksey Kladov | 2018-09-15 | 8 | -138/+306 |
| | | |||||
| * | yet another db api | Aleksey Kladov | 2018-09-15 | 5 | -258/+274 |
| | | |||||
| * | minor | Aleksey Kladov | 2018-09-15 | 2 | -2/+3 |
| | | |||||
| * | renames | Aleksey Kladov | 2018-09-15 | 3 | -47/+49 |
| | | |||||
| * | use salsa for new module map | Aleksey Kladov | 2018-09-15 | 8 | -395/+318 |
| | | |||||
| * | eager invalidation | Aleksey Kladov | 2018-09-15 | 2 | -12/+76 |
| | | |||||
| * | be generic over data | Aleksey Kladov | 2018-09-15 | 2 | -55/+61 |
| | | |||||
| * | generic salsa algo | Aleksey Kladov | 2018-09-15 | 3 | -0/+399 |
| | | |||||
| * | store params in the graph | Aleksey Kladov | 2018-09-15 | 1 | -5/+7 |
| | | |||||
| * | any-cache | Aleksey Kladov | 2018-09-15 | 2 | -21/+18 |
| | | |||||
| * | fix dep tracking | Aleksey Kladov | 2018-09-15 | 2 | -31/+18 |
| | | |||||
| * | add deps tracking | Aleksey Kladov | 2018-09-15 | 3 | -47/+148 |
| | | |||||
| * | Add simplisitc global modification caching | Aleksey Kladov | 2018-09-15 | 3 | -31/+111 |
| | | |||||
| * | initial query tracing | Aleksey Kladov | 2018-09-15 | 2 | -13/+55 |
| | | |||||
| * | start query-based modules | Aleksey Kladov | 2018-09-15 | 7 | -41/+361 |
| | |