public static ForStatementSyntax GetReverseForStatement(RewriteDesign design, LocalVariable indexerVariable, ValueBridge min, ValueBridge increment, List <IStatementSyntax> loopContent) => ForStatement( null, default, indexerVariable.GeThan(min), CreateSeparatedExpressionList(indexerVariable.AddAssign(increment)), GetBody(design, loopContent));