Skip to content

Commit

Permalink
Document the new expression/comparison mutator
Browse files Browse the repository at this point in the history
  • Loading branch information
zimmski committed Nov 1, 2018
1 parent 44ec3af commit f84c255
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,10 @@ Examples for exec commands can be found in the [scripts](/scripts/exec) director

### Expression mutators

| Name | Description |
| :------------------ | :--------------------------------------------- |
| expression/remove | Searches for `&&` and <code>\|\|</code> operators and makes each term of the operator irrelevant by using `true` or `false` as replacements. |
| Name | Description |
| :-------------------- | :--------------------------------------------- |
| expression/comparison | Searches for comparison operators, such as `>` and `<=`, and replaces them with similar operators to catch off-by-one errors, e.g. `>` is replaced by `>=`. |
| expression/remove | Searches for `&&` and <code>\|\|</code> operators and makes each term of the operator irrelevant by using `true` or `false` as replacements. |

### Statement mutators

Expand Down

0 comments on commit f84c255

Please sign in to comment.