Reports assignments that can be replaced with augmented assignments.
Example:
a = 23 b = 3 a = a + b
After the quick-fix is applied, the code changes to:
a = 23 b = 3 a += b