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