3 instantiations of InterceptsLocationData
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
458var interceptsLocationData = new InterceptsLocationData(contentHash, simpleName.FullSpan.Start);
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
92new InterceptsLocationData(
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (1)
106result = new(contentHash, position);
15 references to InterceptsLocationData
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SemanticFacts\CSharpSemanticFacts.cs (1)
458var interceptsLocationData = new InterceptsLocationData(contentHash, simpleName.FullSpan.Start);
Microsoft.CodeAnalysis.Workspaces (14)
FindSymbols\SyntaxTree\SyntaxTreeIndex.cs (2)
20private readonly Dictionary<InterceptsLocationData, TextSpan>? _interceptsLocationInfo; 28Dictionary<InterceptsLocationData, TextSpan>? interceptsLocationInfo)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (3)
53Dictionary<InterceptsLocationData, TextSpan>? interceptsLocationInfo = null; 259ref Dictionary<InterceptsLocationData, TextSpan>? interceptsLocationInfo, 317if (!InterceptsLocationUtilities.TryGetInterceptsLocationData(version, data, out var interceptsLocationData))
FindSymbols\SyntaxTree\SyntaxTreeIndex_Forwarders.cs (1)
74public bool TryGetInterceptsLocation(InterceptsLocationData data, out TextSpan span)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
84Dictionary<InterceptsLocationData, TextSpan>? interceptsLocationInfo = null;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (7)
22public readonly bool Equals(InterceptsLocationData other) 31public static ImmutableArray<InterceptsLocationData> GetInterceptsLocationData(ImmutableArray<AttributeData> attributes) 33using var result = TemporaryArray<InterceptsLocationData>.Empty; 37if (TryGetInterceptsLocationData(attribute, out var data)) 44public static bool TryGetInterceptsLocationData(AttributeData attribute, out InterceptsLocationData result) 59public static bool TryGetInterceptsLocationData(int version, string attributeData, out InterceptsLocationData result) 70private static bool TryGetInterceptsLocationDataVersion1(string attributeData, out InterceptsLocationData result)