Skip to content

Commit daa7042

Browse files
fix diff
1 parent 723d6e9 commit daa7042

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Features/Core/Portable/QuickInfo/CommonSemanticQuickInfoProvider.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ protected static Task<QuickInfoItem> CreateContentAsync(
188188
protected virtual Task<OnTheFlyDocsInfo?> GetOnTheFlyDocsInfoAsync(QuickInfoContext context, CancellationToken cancellationToken)
189189
=> Task.FromResult<OnTheFlyDocsInfo?>(null);
190190

191+
protected virtual (NullableAnnotation, NullableFlowState) GetNullabilityAnalysis(SemanticModel semanticModel, ISymbol symbol, SyntaxNode node, CancellationToken cancellationToken) => default;
192+
191193
private (NullableAnnotation, NullableFlowState) GetNullabilityAnalysis(
192194
SolutionServices services, SemanticModel semanticModel, ISymbol symbol, SyntaxToken token, CancellationToken cancellationToken)
193195
{
@@ -258,9 +260,6 @@ bool TryGetNullabilityAnalysisForSuppressedExpression(out (NullableAnnotation, N
258260
}
259261
}
260262

261-
protected virtual (NullableAnnotation, NullableFlowState) GetNullabilityAnalysis(SemanticModel semanticModel, ISymbol symbol, SyntaxNode node, CancellationToken cancellationToken)
262-
=> default;
263-
264263
protected ImmutableArray<ISymbol> BindSymbols(
265264
SolutionServices services, SemanticModel semanticModel, SyntaxToken token, CancellationToken cancellationToken)
266265
{

0 commit comments

Comments
 (0)