1. Operator Mutation ex) + pgo->nCommitStr += throwEnd; - pgo->nCommitStr = throwEnd; 2. Add statement in the end of scope(if block, while block, method,... etc) 3. Array index mutation ex) + pgdata->bSymbolArrBrkpt[i] = 1; - pgdata->bSymbolArrBrkpt[ch_count] = 1; 4. Add bracket when insert condition if it is necessary ex) + if ( key > '0' && (key < '9' || key == '9') ) - if ( key > '0' && key < '9' ) 5. Condition mutation in for/while loop Thanks.
ex)
Add statement in the end of scope(if block, while block, method,... etc)
Array index mutation
ex)
ex)
Thanks.