Skip to content

Commit

Permalink
Merge pull request #69 from zimmski/document-exp-compar
Browse files Browse the repository at this point in the history
Document the new expression/comparison mutator
  • Loading branch information
zimmski authored Nov 1, 2018
2 parents 44ec3af + f84c255 commit 33fdaba
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 33fdaba

Please sign in to comment.