1 implementation of Arguments
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
5093public ImmutableArray<IArgumentOperation> Arguments { get; }
16 references to Arguments
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (5)
6067VisitAndPushArguments(((IPropertyReferenceOperation)memberReference).Arguments, instancePushed: false); 6130ImmutableArray<IArgumentOperation> propertyArguments = PopArray(propertyReference.Arguments, RewriteArgumentFromArray); 6194Debug.Assert(propertyReference.Arguments.IsEmpty); 6923(IOperation? visitedInstance, ImmutableArray<IArgumentOperation> visitedArguments) = VisitInstanceWithArguments(instance, operation.Arguments); 7731Debug.Assert(propertyReference.Arguments.IsEmpty);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
126if (propertyReference.Arguments.Length != 1) 133propertyReference.Arguments[0].Value,
Microsoft.CodeAnalysis.CSharp.Features (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
126if (propertyReference.Arguments.Length != 1) 133propertyReference.Arguments[0].Value,
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (2)
IOperation\IOperationTests_IArgument.cs (2)
4138if (operation.HasErrors(_compilation) || operation.Arguments.Length == 0) 4145foreach (var argument in operation.Arguments)
Microsoft.CodeAnalysis.Test.Utilities (5)
Compilation\OperationTreeVerifier.cs (3)
1101if (operation.Arguments.Length > 0) 1103VisitArguments(operation.Arguments); 1451Assert.Empty(propertyReference.Arguments);
Compilation\TestOperationVisitor.cs (2)
688VisitMemberReference(operation, operation.Arguments); 1035Assert.Empty(propertyReference.Arguments);