Cesium icon indicating copy to clipboard operation
Cesium copied to clipboard

Optimize codegen for postfix increment operators

Open ForNeVeR opened this issue 5 months ago • 0 comments

Right now, after #647, for operator like a = b++, we emit codegen analogous to b = b + 1; a = b - 1;

Let's check how C# implements this and possibly optimize.

ForNeVeR avatar Sep 07 '24 20:09 ForNeVeR