12 instantiations of BoundAttributeDescriptionInfo
Microsoft.CodeAnalysis.Razor.Workspaces (2)
Tooltip\BoundAttributeDescriptionInfo.cs (2)
19return new BoundAttributeDescriptionInfo( 43return new BoundAttributeDescriptionInfo(
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (10)
Completion\RazorCompletionListProviderTest.cs (1)
235new BoundAttributeDescriptionInfo("System.Boolean", "Stuff", "format", "SomeDocs")
Tooltip\ClassifiedTagHelperTooltipFactoryTest.cs (5)
334new BoundAttributeDescriptionInfo( 379new BoundAttributeDescriptionInfo( 384new BoundAttributeDescriptionInfo( 561new BoundAttributeDescriptionInfo( 566new BoundAttributeDescriptionInfo(
Tooltip\MarkupTagHelperTooltipFactoryTest.cs (4)
129new BoundAttributeDescriptionInfo( 184new BoundAttributeDescriptionInfo( 209new BoundAttributeDescriptionInfo( 214new BoundAttributeDescriptionInfo(
23 references to BoundAttributeDescriptionInfo
Microsoft.CodeAnalysis.Razor.Workspaces (21)
Completion\DirectiveAttributeCompletionItemProvider.AttributeCompletionDetails.cs (4)
13ImmutableArray<BoundAttributeDescriptionInfo> descriptions = default, 18public ImmutableArray<BoundAttributeDescriptionInfo> Descriptions => descriptions.NullToEmpty(); 23out ImmutableArray<BoundAttributeDescriptionInfo> descriptions, 28out ImmutableArray<BoundAttributeDescriptionInfo> descriptions,
Completion\DirectiveAttributeCompletionItemProvider.cs (8)
174var descriptionInfo = BoundAttributeDescriptionInfo.From(attribute, isIndexer, attribute.Parent.TypeName); 260descriptionInfo: BoundAttributeDescriptionInfo.From(parameter), 340BoundAttributeDescriptionInfo descriptionInfo, 359BoundAttributeDescriptionInfo descriptionInfo, 368BoundAttributeDescriptionInfo descriptionInfo, 378BoundAttributeDescriptionInfo descriptionInfo, 383ImmutableArray<BoundAttributeDescriptionInfo> descriptions;
Completion\TagHelperCompletionProvider.cs (1)
236var attributeDescriptions = boundAttributes.SelectAsArray(boundAttribute => BoundAttributeDescriptionInfo.From(boundAttribute, isIndexer));
Hover\HoverFactory.cs (1)
187return BoundAttributeDescriptionInfo.From(boundAttribute, isIndexer);
Tooltip\AggregateBoundAttributeDescription.cs (2)
8internal sealed record AggregateBoundAttributeDescription(ImmutableArray<BoundAttributeDescriptionInfo> DescriptionInfos) 10public static readonly AggregateBoundAttributeDescription Empty = new(ImmutableArray<BoundAttributeDescriptionInfo>.Empty);
Tooltip\BoundAttributeDescriptionInfo.cs (3)
12public static BoundAttributeDescriptionInfo From(BoundAttributeParameterDescriptor parameter) 26public static BoundAttributeDescriptionInfo From(BoundAttributeDescriptor boundAttribute, bool isIndexer) 29public static BoundAttributeDescriptionInfo From(BoundAttributeDescriptor boundAttribute, bool isIndexer, string? parentTagHelperTypeName)
Tooltip\ClassifiedTagHelperTooltipFactory.cs (1)
217foreach (var descriptionInfo in associatedAttributeInfos)
Tooltip\MarkupTagHelperTooltipFactory.cs (1)
121foreach (var descriptionInfo in associatedAttributeInfos)
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (2)
Tooltip\BoundAttributeDescriptionInfoTest.cs (2)
18var typeName = BoundAttributeDescriptionInfo.ResolveTagHelperTypeName("SomePropertyName", "string SomeTypeName.SomePropertyName"); 28var typeName = BoundAttributeDescriptionInfo.ResolveTagHelperTypeName("SomePropertyName", "SomeReturnTypeName SomeTypeName.SomePropertyName");