1 implementation of IndexerSymbol
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10483
public ISymbol
IndexerSymbol
{ get; }
7 references to IndexerSymbol
ILLink.RoslynAnalyzer (2)
DataFlow\LocalDataFlowVisitor.cs (2)
300
var property = (IPropertySymbol) indexerRef.
IndexerSymbol
;
645
if (operation.
IndexerSymbol
is not IPropertySymbol indexerProperty) {
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
2137
return new ImplicitIndexerReferenceOperation(instance, argument, operation.LengthSymbol, operation.
IndexerSymbol
, semanticModel: null,
6256
return new ImplicitIndexerReferenceOperation(instance, index, indexerReference.LengthSymbol, indexerReference.
IndexerSymbol
,
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (2)
956
LogSymbol(operation.
IndexerSymbol
, $"{nameof(operation.
IndexerSymbol
)}");
Compilation\TestOperationVisitor.cs (1)
610
Assert.NotNull(operation.
IndexerSymbol
);