12 instantiations of AggregateBoundAttributeDescription
Microsoft.CodeAnalysis.Razor.Workspaces (5)
Completion\DirectiveAttributeCompletionItemProvider.cs (2)
285? RazorCompletionItem.CreateDirectiveAttribute(displayText, insertText, descriptionInfo: new(descriptions), commitCharacters, isSnippet) 286: RazorCompletionItem.CreateDirectiveAttributeParameter(displayText, insertText, descriptionInfo: new(descriptions), commitCharacters, isSnippet);
Completion\TagHelperCompletionProvider.cs (1)
242descriptionInfo: new(attributeDescriptions),
Hover\HoverFactory.cs (1)
190var attrDescriptionInfo = new AggregateBoundAttributeDescription(descriptionInfos);
Tooltip\AggregateBoundAttributeDescription.cs (1)
10public static readonly AggregateBoundAttributeDescription Empty = new(ImmutableArray<BoundAttributeDescriptionInfo>.Empty);
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (7)
Completion\RazorCompletionListProviderTest.cs (1)
234var attributeCompletionDescription = new AggregateBoundAttributeDescription([
Tooltip\ClassifiedTagHelperTooltipFactoryTest.cs (3)
340var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 390var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 572var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray());
Tooltip\MarkupTagHelperTooltipFactoryTest.cs (3)
136var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 190var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 220var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray());
23 references to AggregateBoundAttributeDescription
Microsoft.CodeAnalysis.Razor.Workspaces (11)
Completion\RazorCompletionItem.cs (4)
75AggregateBoundAttributeDescription descriptionInfo, 82AggregateBoundAttributeDescription descriptionInfo, 103AggregateBoundAttributeDescription descriptionInfo, 110=> new(RazorCompletionItemKind.DirectiveAttributeParameterEventValue, displayText, insertText, sortText: null, descriptionInfo: AggregateBoundAttributeDescription.Empty, commitCharacters, isSnippet: false);
Completion\RazorCompletionItemResolver.cs (1)
109if (associatedRazorCompletion.DescriptionInfo is not AggregateBoundAttributeDescription descriptionInfo)
Hover\HoverFactory.cs (1)
190var attrDescriptionInfo = new AggregateBoundAttributeDescription(descriptionInfos);
Tooltip\AggregateBoundAttributeDescription.cs (1)
10public static readonly AggregateBoundAttributeDescription Empty = new(ImmutableArray<BoundAttributeDescriptionInfo>.Empty);
Tooltip\ClassifiedTagHelperTooltipFactory.cs (3)
81public static bool TryCreateTooltip(AggregateBoundAttributeDescription attributeDescriptionInfo, [NotNullWhen(true)] out ContainerElement? tooltipContent) 124public static bool TryCreateTooltip(AggregateBoundAttributeDescription attributeDescriptionInfo, [NotNullWhen(true)] out ClassifiedTextElement? tooltipContent) 201private static bool TryClassifyAttribute(AggregateBoundAttributeDescription attributeInfo, out ImmutableArray<DescriptionClassification> classifications)
Tooltip\MarkupTagHelperTooltipFactory.cs (1)
96AggregateBoundAttributeDescription attributeDescriptionInfo,
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (12)
Completion\RazorCompletionListProviderTest.cs (2)
234var attributeCompletionDescription = new AggregateBoundAttributeDescription([ 268descriptionInfo: AggregateBoundAttributeDescription.Empty,
Tooltip\ClassifiedTagHelperTooltipFactoryTest.cs (7)
322var elementDescription = AggregateBoundAttributeDescription.Empty; 340var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 390var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 549var elementDescription = AggregateBoundAttributeDescription.Empty; 572var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray());
Tooltip\MarkupTagHelperTooltipFactoryTest.cs (3)
136var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 190var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray()); 220var attributeDescription = new AggregateBoundAttributeDescription(associatedAttributeDescriptions.ToImmutableArray());