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