1 implementation of Indices
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4862
public ImmutableArray<IOperation>
Indices
{ get; }
9 references to Indices
Microsoft.CodeAnalysis (3)
Operations\ControlFlowGraphBuilder.cs (3)
2117
ImmutableArray<IOperation> visitedIndices = VisitArray(operation.
Indices
);
6082
VisitAndPushArray(arrayReference.
Indices
);
6136
ImmutableArray<IOperation> indices = PopArray(arrayElementReference.
Indices
);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
145
if (arrayElementReference.
Indices
.Length != 1)
152
arrayElementReference.
Indices
[0],
Microsoft.CodeAnalysis.CSharp.Features (2)
CSharpUseIndexOperatorDiagnosticAnalyzer.cs (2)
145
if (arrayElementReference.
Indices
.Length != 1)
152
arrayElementReference.
Indices
[0],
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
941
VisitArray(operation.
Indices
, "Indices", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
589
AssertEx.Equal(new[] { operation.ArrayReference }.Concat(operation.
Indices
), operation.ChildOperations);