Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComparisonReplace ¶
type ComparisonReplace struct {
// contains filtered or unexported fields
}
func New ¶
func New() *ComparisonReplace
New returns a new ComparisonReplace virus.
It replaces the left and right sides of an `&&` comparison with `true` and the left and right sides of an `||` with false. E.g. `1 == 1 && 2 == 2` gets two mutations: `true && 2 == 2` and `1 == 1 && true`.
Click to show internal directories.
Click to hide internal directories.