1 implementation of ConstructArguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10718
public 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)
6548
if (operation.
ConstructArguments
.Any(a => a is IArgumentOperation) && !operation.
ConstructArguments
.All(a => a is IArgumentOperation))
6554
var arguments = operation.
ConstructArguments
.As<IArgumentOperation>();
6557
VisitAndPushArray(operation.
ConstructArguments
);
6586
? PopArray(operation.
ConstructArguments
)
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (3)
1624
if (operation.
ConstructArguments
.Length > 0)
1625
VisitArray(operation.
ConstructArguments
, nameof(operation.
ConstructArguments
), logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
491
AssertEx.Equal([.. operation.
ConstructArguments
, .. operation.Elements], operation.ChildOperations);