1 implementation of SuppressNullableWarningExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
122
public int?
SuppressNullableWarningExpression
=> (int)SyntaxKind.SuppressNullableWarningExpression;
2 references to SuppressNullableWarningExpression
Microsoft.CodeAnalysis.Features (2)
QuickInfo\CommonSemanticQuickInfoProvider.cs (1)
285
if (current.RawKind == syntaxFacts.SyntaxKinds.
SuppressNullableWarningExpression
)
src\Analyzers\Core\CodeFixes\UseConditionalExpression\AbstractUseConditionalExpressionCodeFixProvider.cs (1)
170
var suppressKind = this.SyntaxFacts.SyntaxKinds.
SuppressNullableWarningExpression
;