1 implementation of NewKeyword
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
72public int NewKeyword => (int)SyntaxKind.NewKeyword;
2 references to NewKeyword
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\FindReferenceCache.cs (2)
249this.SyntaxFacts.GetText(this.SyntaxFacts.SyntaxKinds.NewKeyword), 250static (_, token, syntaxKinds) => token.RawKind == syntaxKinds.NewKeyword,