Why is this an issue?

Using several "--" or "++" unary operators in the same arithmetic expression can quickly make the expression unreadable.

Noncompliant code example

var j:int = foo++ - --bar;

Compliant solution

bar--;
var j:int = foo++ - bar;