11 references to Punctuation
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
162
new TaggedText(TextTags.
Punctuation
, ":"),
Microsoft.CodeAnalysis.EditorFeatures (2)
SignatureHelp\Presentation\Signature.cs (2)
220
new TaggedText(TextTags.
Punctuation
, "[")
223
result.Add(new TaggedText(TextTags.
Punctuation
, "]"));
Microsoft.CodeAnalysis.Features (8)
Common\SymbolDisplayPartKindTags.cs (1)
61
SymbolDisplayPartKind.Punctuation => TextTags.
Punctuation
,
Common\TaggedText.cs (2)
176
TextTags.
Punctuation
=> ClassificationTypeNames.Punctuation,
291
=> parts.Add(new TaggedText(TextTags.
Punctuation
, text));
Common\TextTags.cs (1)
34
public const string Punctuation = nameof(
Punctuation
);
SemanticSearch\SearchCompilationFailureDefinitionItem.cs (1)
22
new TaggedText(TextTags.
Punctuation
, ":"),
SemanticSearch\SearchExceptionDefinitionItem.cs (1)
24
new TaggedText(TextTags.
Punctuation
, ":"),
SemanticSearch\SemanticSearchDefinitionItemFactory.cs (2)
30
displayParts: text.Length == displayStr.Length ? [displayText] : [displayText, new TaggedText(TextTags.
Punctuation
, "…")]);
71
displayParts: displaySpan.Length == span.Length ? [displayText] : [displayText, new TaggedText(TextTags.
Punctuation
, "…")],