5 instantiations of TypeHint
Microsoft.CodeAnalysis.CSharp.Features (5)
InlineHints\CSharpInlineTypeHintsService.cs (5)
64
:
new
(type, new TextSpan(variableDesignation.Identifier.SpanStart, 0), textChange: null, trailingSpace: true);
86
? new
TypeHint
(parameter.Type, span, textChange: new TextChange(span, parameter.Type.ToDisplayString(s_minimalTypeStyle) + " "), trailingSpace: true)
87
: new
TypeHint
(parameter.Type, span, textChange: null, trailingSpace: true);
100
return
new
(type, span, new TextChange(span, " " + type.ToDisplayString(s_minimalTypeStyle)), leadingSpace: true);
119
return new
TypeHint
(type, span, new TextChange(displayAllSpan.Span, type.ToDisplayString(s_minimalTypeStyle)), trailingSpace: trailingSpace);
3 references to TypeHint
Microsoft.CodeAnalysis.CSharp.Features (2)
InlineHints\CSharpInlineTypeHintsService.cs (2)
27
protected override
TypeHint
? TryGetTypeHint(
108
private static
TypeHint
CreateTypeHint(
Microsoft.CodeAnalysis.Features (1)
InlineHints\AbstractInlineTypeHintsService.cs (1)
31
protected abstract
TypeHint
? TryGetTypeHint(