1 implementation of Arguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
5555public ImmutableArray<IArgumentOperation> Arguments { get; }
10 references to Arguments
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
5887ImmutableArray<IArgumentOperation> visitedArgs = VisitArguments(operation.Arguments, instancePushed: false); 6575var arguments = ((IObjectCreationOperation)operation.HandlerCreation).Arguments;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
ConvertToRecordHelpers.cs (1)
371Arguments: ImmutableArray<IArgumentOperation> { IsEmpty: true },
Microsoft.CodeAnalysis.CSharp.Features (1)
ConvertToRecordHelpers.cs (1)
371Arguments: ImmutableArray<IArgumentOperation> { IsEmpty: true },
Microsoft.CodeAnalysis.Features (1)
ValueTracking\ValueTracker.OperationCollector.cs (1)
107=> TrackArgumentsAsync(objectCreationOperation.Arguments, cancellationToken);
Microsoft.CodeAnalysis.Test.Utilities (5)
Compilation\ControlFlowGraphVerifier.cs (1)
948Arguments: { Length: >= 3 } arguments,
Compilation\OperationTreeVerifier.cs (1)
1438VisitArguments(operation.Arguments);
Compilation\TestOperationVisitor.cs (2)
1014Assert.Empty(operation.Arguments); 1018IEnumerable<IOperation> children = operation.Arguments;
Diagnostics\OperationTestAnalyzer.cs (1)
1129foreach (IArgumentOperation argument in creation.Arguments)