2 instantiations of InterceptsLocationData
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SyntaxTree\SyntaxTreeIndex_Persistence.cs (1)
92new InterceptsLocationData(
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\InterceptsLocationUtilities.cs (1)
105result = new(contentHash, position);
14 references to InterceptsLocationData
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)
73public 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)
21public readonly bool Equals(InterceptsLocationData other) 30public static ImmutableArray<InterceptsLocationData> GetInterceptsLocationData(ImmutableArray<AttributeData> attributes) 32using var result = TemporaryArray<InterceptsLocationData>.Empty; 36if (TryGetInterceptsLocationData(attribute, out var data)) 43public static bool TryGetInterceptsLocationData(AttributeData attribute, out InterceptsLocationData result) 58public static bool TryGetInterceptsLocationData(int version, string attributeData, out InterceptsLocationData result) 69private static bool TryGetInterceptsLocationDataVersion1(string attributeData, out InterceptsLocationData result)