1 implementation of ConstructArguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10720public ImmutableArray<IOperation> ConstructArguments { get; }
6 references to ConstructArguments
Microsoft.CodeAnalysis (6)
Generated\Operations.Generated.cs (1)
4020/// in <see cref="ICollectionExpressionOperation.ConstructArguments" /> when the construction method is a collection builder method,
Operations\ControlFlowGraphBuilder.cs (5)
6557if (operation.ConstructArguments.Any(a => a is IArgumentOperation) && !operation.ConstructArguments.All(a => a is IArgumentOperation)) 6563var arguments = operation.ConstructArguments.As<IArgumentOperation>(); 6566VisitAndPushArray(operation.ConstructArguments); 6595? PopArray(operation.ConstructArguments)