1 implementation of FalseLiteralExpression
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
86public int FalseLiteralExpression => (int)SyntaxKind.FalseLiteralExpression;
2 references to FalseLiteralExpression
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
781=> node != null && node.RawKind == syntaxFacts.SyntaxKinds.FalseLiteralExpression;
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\SyntaxGeneratorExtensions_Negate.cs (1)
484expression.RawKind == syntaxFacts.SyntaxKinds.FalseLiteralExpression ||