1 instantiation of AnnotatedSymbolMapping
Microsoft.CodeAnalysis.Features (1)
Shared\Utilities\AnnotatedSymbolMapping.cs (1)
115return new AnnotatedSymbolMapping(symbolToDeclarationAnnotationMap.ToImmutableDictionary(), annotatedSolution, immutableDocumentIdToSymbolsMap, typeNodeAnnotation);
11 references to AnnotatedSymbolMapping
Microsoft.CodeAnalysis.Features (11)
ExtractClass\ExtractClassWithDialogCodeAction.cs (4)
82var symbolMapping = await AnnotatedSymbolMapping.CreateAsync( 152AnnotatedSymbolMapping symbolMapping, 235AnnotatedSymbolMapping symbolMapping,
ExtractInterface\AbstractExtractInterfaceService.cs (4)
183var symbolMapping = await AnnotatedSymbolMapping.CreateAsync( 227var symbolMapping = await AnnotatedSymbolMapping.CreateAsync(
Shared\Utilities\AnnotatedSymbolMapping.cs (2)
51/// Creates a <see cref="AnnotatedSymbolMapping"/> where the first token of each symbol is annotated 55public static async Task<AnnotatedSymbolMapping> CreateAsync(
Shared\Utilities\ExtractTypeHelpers.cs (1)
29public static async Task<(Document containingDocument, SyntaxAnnotation typeAnnotation)> AddTypeToExistingFileAsync(Document document, INamedTypeSymbol newType, AnnotatedSymbolMapping symbolMapping, CodeGenerationOptionsProvider fallbackOptions, CancellationToken cancellationToken)