1 write to ConvertingExtendedNodes
Microsoft.CodeAnalysis.Features (1)
ConvertLinq\ConvertForEachToLinqQuery\ForEachInfo.cs (1)
38ConvertingExtendedNodes = convertingExtendedNodes;
7 references to ConvertingExtendedNodes
Microsoft.CodeAnalysis.CSharp.Features (6)
ConvertLinq\ConvertForEachToLinqQuery\AbstractConverter.cs (6)
63SyntaxFactory.List(ForEachInfo.ConvertingExtendedNodes.Select(node => CreateQueryClause(node))), 217/// Creates a linq invocation expression for the <see cref="ForEachInfo{ForEachStatementSyntax, StatementSyntax}.ConvertingExtendedNodes"/> node at the given index <paramref name="extendedNodeIndex"/> 221/// <param name="extendedNodeIndex">Index into <see cref="ForEachInfo{ForEachStatementSyntax, StatementSyntax}.ConvertingExtendedNodes"/> to be processed and updated.</param> 223/// <param name="hasForEachChild">Flag indicating if any of the processed <see cref="ForEachInfo{ForEachStatementSyntax, StatementSyntax}.ConvertingExtendedNodes"/> is a <see cref="ForEachStatementSyntax"/>.</param> 232if (extendedNodeIndex == ForEachInfo.ConvertingExtendedNodes.Length) 238var node = ForEachInfo.ConvertingExtendedNodes[extendedNodeIndex];
Microsoft.CodeAnalysis.Features (1)
ConvertLinq\ConvertForEachToLinqQuery\AbstractConvertForEachToLinqQueryProvider.cs (1)
177if (forEachInfo.ConvertingExtendedNodes.Length >= 1)