7 references to SelectAsArray
Microsoft.CodeAnalysis (7)
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActions.cs (1)
58
var groups = analyzers.
SelectAsArray
(
Generated\Operations.Generated.cs (2)
10794
private ImmutableArray<T> VisitArray<T>(ImmutableArray<T> nodes) where T : IOperation => nodes.
SelectAsArray
((n, @this) => @this.Visit(n), this)!;
10795
private ImmutableArray<(ISymbol, T)> VisitArray<T>(ImmutableArray<(ISymbol, T)> nodes) where T : IOperation => nodes.
SelectAsArray
((n, @this) => (n.Item1, @this.Visit(n.Item2)), this)!;
InternalUtilities\OneOrMany.cs (1)
134
OneOrMany.Create(_many.
SelectAsArray
(selector, arg));
Operations\ControlFlowGraphBuilder.cs (3)
7659
operation.Patterns.
SelectAsArray
((p, @this) => (IPatternOperation)@this.VisitRequired(p), this),
7673
operation.DeconstructionSubpatterns.
SelectAsArray
((p, @this) => (IPatternOperation)@this.VisitRequired(p), this),
7674
operation.PropertySubpatterns.
SelectAsArray
((p, @this) => (IPropertySubpatternOperation)@this.VisitRequired(p), this),