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