1 implementation of Elements
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10719public ImmutableArray<IOperation> Elements { get; }
7 references to Elements
Microsoft.CodeAnalysis (3)
Generated\Operations.Generated.cs (2)
3969/// to the creation method are contained in <see cref="Elements" />. 4017/// specified by a <c>[CollectionBuilder]</c> attribute. This is distinct from <see cref="ICollectionExpressionOperation.Elements" />
Operations\ControlFlowGraphBuilder.cs (1)
6565operation.Elements,
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (3)
1619LogString($" ({operation.Elements.Length} elements"); 1627VisitArray(operation.Elements, nameof(operation.Elements), logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
491AssertEx.Equal([.. operation.ConstructArguments, .. operation.Elements], operation.ChildOperations);