Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Fix formatting | Lúcás Meier | 2019-10-04 | 1 | -22/+9 | |
| | | | | ||||||
* | | | | Create an assist for applying De Morgan's law | Lúcás Meier | 2019-10-03 | 1 | -0/+115 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1807 This assist can transform expressions of the form `!x || !y` into `!(x && y)`. This also works with `&&`. This assist will only trigger if the cursor is on the central logical operator. The main limitation of this current implementation is that both operands need to be an explicit negation, either of the form `!x`, or `x != y`. More operands could be accepted, but this would complicate the implementation quite a bit. | |||||
* | | | | WIP: Add demorgan application with naive negation | Lúcás Meier | 2019-10-03 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Fix parsing of block expressions in "forbid_structs" contexts. | Geoffry Song | 2019-10-03 | 11 | -54/+242 | |
| |/ / |/| | | | | | | | | | | | | | | Forbidding block expressions entirely is too strict; instead, we should only forbid them in contexts where we are parsing an optional RHS (i.e. the RHS of a range expression). | |||||
* | | | Merge #1945 | bors[bot] | 2019-10-02 | 2 | -3/+72 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | 1945: Handle divergence in type inference for blocks r=flodiebold a=lnicola Fixes #1944. The `infer_basics` test is failing, not sure what to do about it. Co-authored-by: Laurențiu Nicola <[email protected]> | |||||
| * | | Handle divergence in type inference for blocks | Laurențiu Nicola | 2019-10-02 | 2 | -3/+72 | |
| | | | ||||||
* | | | Update pico-args | kjeremy | 2019-10-02 | 3 | -6/+6 | |
|/ / | ||||||
* | | Change user message. | Alexander Andreev | 2019-09-30 | 1 | -1/+1 | |
| | | ||||||
* | | Drop debug strings. | Alexander Andreev | 2019-09-30 | 1 | -5/+1 | |
| | | ||||||
* | | Merge branch 'master' into feature/issue/1856 | Alexander Andreev | 2019-09-30 | 51 | -953/+1160 | |
|\ \ | | | | | | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs | |||||
| * | | Fixes | uHOOCCOOHu | 2019-09-30 | 2 | -19/+8 | |
| | | | ||||||
| * | | Fix API of Attr | uHOOCCOOHu | 2019-09-30 | 9 | -54/+32 | |
| | | | ||||||
| * | | Parse correct AttrInput | uHOOCCOOHu | 2019-09-30 | 33 | -601/+844 | |
| | | | ||||||
| * | | cleanup editor | Aleksey Kladov | 2019-09-30 | 2 | -5/+11 | |
| | | | ||||||
| * | | remove ast_editor.rs | Aleksey Kladov | 2019-09-30 | 4 | -59/+16 | |
| | | | ||||||
| * | | move remove bounds to ast/edit.rs | Aleksey Kladov | 2019-09-30 | 3 | -18/+16 | |
| | | | ||||||
| * | | move field list to ast/edit.rs | Aleksey Kladov | 2019-09-30 | 5 | -108/+106 | |
| | | | ||||||
| * | | migrate add impl items to the new editing API | Aleksey Kladov | 2019-09-28 | 4 | -80/+109 | |
| | | | ||||||
| * | | simplify strip attrs | Aleksey Kladov | 2019-09-28 | 5 | -29/+35 | |
| | | | ||||||
| * | | correctly reset chalk state after a panic | Aleksey Kladov | 2019-09-28 | 1 | -6/+9 | |
| | | | ||||||
| * | | replace horrible hack with a slightly less horrible one | Aleksey Kladov | 2019-09-27 | 2 | -3/+5 | |
| | | | ||||||
* | | | Added test for check doc strings in crates. | Alexander Andreev | 2019-09-30 | 171 | -29/+419 | |
|/ / | | | | | | | #1856 | |||||
* | | Merge #1815 | bors[bot] | 2019-09-27 | 20 | -126/+373 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1815: Support correct `$crate` expansion in macros r=uHOOCCOOHu a=uHOOCCOOHu This PR makes normal use cases of `$crate` from macros work as expected. It makes more macros from `std` work. Type inference works well with `panic`, `unimplemented`, `format`, and maybe more. Sadly that `vec![1, 2, 3]` still not works, but it is not longer an issue about macro. Screenshot: ![Screenshot_20190927_022136](https://user-images.githubusercontent.com/14816024/65714465-b4568f80-e0cd-11e9-8043-dd44c2ae8040.png) Co-authored-by: uHOOCCOOHu <[email protected]> | |||||
| * | | Fix | uHOOCCOOHu | 2019-09-27 | 2 | -2/+2 | |
| | | | ||||||
| * | | Support `$crate` in item and expr place. | uHOOCCOOHu | 2019-09-26 | 14 | -37/+268 | |
| | | | ||||||
| * | | Store crate info in `MacroDefId` | uHOOCCOOHu | 2019-09-26 | 3 | -5/+11 | |
| | | | ||||||
| * | | Refactor `Name` ready for hygienic macro | uHOOCCOOHu | 2019-09-26 | 4 | -84/+94 | |
| |/ | ||||||
* | | Add SubstsBuilder | Florian Diebold | 2019-09-26 | 11 | -126/+212 | |
| | | | | | | | | + further refactoring. | |||||
* | | Start simplifying editing API | Aleksey Kladov | 2019-09-26 | 12 | -82/+107 | |
|/ | ||||||
* | move diff to ra_syntax | Aleksey Kladov | 2019-09-26 | 2 | -24/+45 | |
| | ||||||
* | keep ast creation API simple | Aleksey Kladov | 2019-09-26 | 9 | -250/+213 | |
| | ||||||
* | Merge #1917 | bors[bot] | 2019-09-26 | 2 | -8/+2 | |
|\ | | | | | | | | | | | | | | | 1917: disable periodic GC r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | disable periodic GC | Aleksey Kladov | 2019-09-26 | 2 | -8/+2 | |
| | | | | | | | | | | There's hypothesis that it doesn't do anything useful now that we have LRU... | |||||
* | | Support all coercion places | uHOOCCOOHu | 2019-09-25 | 3 | -96/+216 | |
| | | ||||||
* | | Support custom `CoerceUnsized` | uHOOCCOOHu | 2019-09-25 | 4 | -247/+476 | |
| | | | | | | | | Split out tests about coercion | |||||
* | | Better handle never type and branch merging | uHOOCCOOHu | 2019-09-25 | 5 | -181/+392 | |
| | | | | | | | | Split out tests for never type to another file | |||||
* | | Support basic implicit type coerce | uHOOCCOOHu | 2019-09-25 | 2 | -142/+383 | |
| | | ||||||
* | | Support auto-deref in argument position | uHOOCCOOHu | 2019-09-25 | 2 | -1/+161 | |
|/ | ||||||
* | Merge #1912 | bors[bot] | 2019-09-25 | 6 | -31/+119 | |
|\ | | | | | | | | | | | | | | | 1912: add new editing API, suitable for modifying several nodes at once r=viorina a=matklad r? @viorina Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | add new editing API, suitable for modifying several nodes at once | Aleksey Kladov | 2019-09-25 | 6 | -31/+119 | |
| | | ||||||
* | | Resolve trait associated items | Florian Diebold | 2019-09-25 | 5 | -19/+78 | |
| | | | | | | | | E.g. `Default::default` or `<Foo as Default>::default`. | |||||
* | | Fix retrieval of the Fn traits | Florian Diebold | 2019-09-25 | 4 | -8/+7 | |
|/ | | | | | I used the wrong query, so it only used the lang items from the respective crate... | |||||
* | Merge #1911 | bors[bot] | 2019-09-25 | 2 | -6/+6 | |
|\ | | | | | | | | | | | | | | | 1911: fewer monomorphisations r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | fewer monomorphisations | Aleksey Kladov | 2019-09-25 | 2 | -6/+6 | |
| | | ||||||
* | | clean up naming | Aleksey Kladov | 2019-09-25 | 2 | -2/+2 | |
| | | ||||||
* | | cleanup diagnostics | Aleksey Kladov | 2019-09-25 | 1 | -4/+6 | |
| | | ||||||
* | | shorten AstBuilder names | Aleksey Kladov | 2019-09-25 | 5 | -54/+42 | |
| | | ||||||
* | | minor builder cleanups | Aleksey Kladov | 2019-09-25 | 3 | -55/+55 | |
| | | ||||||
* | | cleaned up record field builder | Aleksey Kladov | 2019-09-25 | 2 | -7/+4 | |
| | | ||||||
* | | move ast builder to a separate file | Aleksey Kladov | 2019-09-25 | 7 | -235/+237 | |
| | |