1 implementation of ConstructArguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10720
public 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)
6557
if (operation.
ConstructArguments
.Any(a => a is IArgumentOperation) && !operation.
ConstructArguments
.All(a => a is IArgumentOperation))
6563
var arguments = operation.
ConstructArguments
.As<IArgumentOperation>();
6566
VisitAndPushArray(operation.
ConstructArguments
);
6595
? PopArray(operation.
ConstructArguments
)