private void AnalyzeForLoopSection(ForLoopSection section, [NotNull] IOperation operation,
                                           OperationAnalysisContext context)
        {
            var statementWalker = new StatementWalker(section);

            AnalyzeVisitOperation(operation, statementWalker, context);
        }
 public StatementWalker(ForLoopSection section)
 {
     this.section = section;
 }