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