1 implementation of IndexerSymbol
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10483public 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)
2137return new ImplicitIndexerReferenceOperation(instance, argument, operation.LengthSymbol, operation.IndexerSymbol, semanticModel: null, 6256return new ImplicitIndexerReferenceOperation(instance, index, indexerReference.LengthSymbol, indexerReference.IndexerSymbol,
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (2)
956LogSymbol(operation.IndexerSymbol, $"{nameof(operation.IndexerSymbol)}");
Compilation\TestOperationVisitor.cs (1)
610Assert.NotNull(operation.IndexerSymbol);