diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-10-05 10:09:38 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-10-05 10:09:38 +0100 |
commit | dbf869b4d2dac09df17609edf6e67c1611b71dc5 (patch) | |
tree | 8ca4f0a4865acc8b67798951e3a5c76cb5a6956c /crates/ra_arena/src/map.rs | |
parent | cce32719cf140550350c84aa7f006080615a31d6 (diff) | |
parent | e06ad80d49f63c0c18a6447f39415a9ce900d9fa (diff) |
Merge #1952
1952: Create an assist for applying De Morgan's Law r=matklad a=cronokirby
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.
Co-authored-by: Lúcás Meier <[email protected]>
Diffstat (limited to 'crates/ra_arena/src/map.rs')
0 files changed, 0 insertions, 0 deletions