Exavier.Mutators.ConditionalsBoundary (exavier v0.3.0)
Mutates conditional operators to change their boundary..
Conditionals are replaced according to the table below.
Original | Mutation |
---|---|
< | <= |
<= | < |
> | >= |
>= | > |
For example:
a < b
will be mutated into
a <= b