1 implementation of ConstructArguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10718public ImmutableArray<IOperation> ConstructArguments { get; }
10 references to ConstructArguments
Microsoft.CodeAnalysis (6)
Generated\Operations.Generated.cs (1)
4019/// in <see cref="ICollectionExpressionOperation.ConstructArguments" /> when the construction method is a collection builder method,
Operations\ControlFlowGraphBuilder.cs (5)
6548if (operation.ConstructArguments.Any(a => a is IArgumentOperation) && !operation.ConstructArguments.All(a => a is IArgumentOperation)) 6554var arguments = operation.ConstructArguments.As<IArgumentOperation>(); 6557VisitAndPushArray(operation.ConstructArguments); 6586? PopArray(operation.ConstructArguments)
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (3)
1624if (operation.ConstructArguments.Length > 0) 1625VisitArray(operation.ConstructArguments, nameof(operation.ConstructArguments), logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
491AssertEx.Equal([.. operation.ConstructArguments, .. operation.Elements], operation.ChildOperations);