rust/crates/ra_assists
Lúcás Meier e769a54502 Create an assist for applying De Morgan's law
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.
2019-10-03 22:48:35 +02:00
..
src Create an assist for applying De Morgan's law 2019-10-03 22:48:35 +02:00
Cargo.toml add new editing API, suitable for modifying several nodes at once 2019-09-25 17:57:12 +03:00